add rssa-pintar to git

This commit is contained in:
ryan
2025-10-17 13:38:25 +07:00
commit 577589e6e5
4670 changed files with 1663440 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 388 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 495 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 499 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 438 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 821 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 432 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 498 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 498 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 439 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 823 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 432 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

View File

@@ -0,0 +1,2 @@
email : ragil@simrs
password : gantenggantengserigala2022

9
README.md Normal file
View File

@@ -0,0 +1,9 @@
# CodeIgniter 2
Open Source PHP Framework (originally from EllisLab)
For more info, please refer to the user-guide at http://www.codeigniter.com/userguide2/
(also available within the download package for offline use)
**WARNING:** *CodeIgniter 2.x is no longer under development and only receives security patches until October 31st, 2015.
Please update your installation to the latest CodeIgniter 3.x version available
(upgrade instructions [here](http://www.codeigniter.com/userguide3/installation/upgrade_300.html)).*

10
application/cache/index.html vendored Normal file
View File

@@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@@ -0,0 +1,116 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| AUTO-LOADER
| -------------------------------------------------------------------
| This file specifies which systems should be loaded by default.
|
| In order to keep the framework as light-weight as possible only the
| absolute minimal resources are loaded by default. For example,
| the database is not connected to automatically since no assumption
| is made regarding whether you intend to use it. This file lets
| you globally define which systems you would like loaded with every
| request.
|
| -------------------------------------------------------------------
| Instructions
| -------------------------------------------------------------------
|
| These are the things you can load automatically:
|
| 1. Packages
| 2. Libraries
| 3. Helper files
| 4. Custom config files
| 5. Language files
| 6. Models
|
*/
/*
| -------------------------------------------------------------------
| Auto-load Packges
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['packages'] = array(APPPATH.'third_party', '/usr/local/shared');
|
*/
$autoload['packages'] = array();
/*
| -------------------------------------------------------------------
| Auto-load Libraries
| -------------------------------------------------------------------
| These are the classes located in the system/libraries folder
| or in your application/libraries folder.
|
| Prototype:
|
| $autoload['libraries'] = array('database', 'session', 'xmlrpc');
*/
$autoload['libraries'] = array('form_validation','database','table','session');
/*
| -------------------------------------------------------------------
| Auto-load Helper Files
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['helper'] = array('url', 'file');
*/
$autoload['helper'] = array('url','form','date');
/*
| -------------------------------------------------------------------
| Auto-load Config files
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['config'] = array('config1', 'config2');
|
| NOTE: This item is intended for use ONLY if you have created custom
| config files. Otherwise, leave it blank.
|
*/
$autoload['config'] = array();
/*
| -------------------------------------------------------------------
| Auto-load Language files
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['language'] = array('lang1', 'lang2');
|
| NOTE: Do not include the "_lang" part of your file. For example
| "codeigniter_lang.php" would be referenced as array('codeigniter');
|
*/
$autoload['language'] = array();
/*
| -------------------------------------------------------------------
| Auto-load Models
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['model'] = array('model1', 'model2');
|
*/
$autoload['model'] = array();
/* End of file autoload.php */
/* Location: ./application/config/autoload.php */

View File

@@ -0,0 +1,370 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
date_default_timezone_set("Asia/Jakarta");
/*
|--------------------------------------------------------------------------
| Base Site URL
|--------------------------------------------------------------------------
|
| URL to your CodeIgniter root. Typically this will be your base URL,
| WITH a trailing slash:
|
| http://example.com/
|
| WARNING: You MUST set this value!
|
| If it is not set, then CodeIgniter will try guess the protocol and path
| your installation, but due to security concerns the hostname will be set
| to $_SERVER['SERVER_ADDR'] if available, or localhost otherwise.
| The auto-detection mechanism exists only for convenience during
| development and MUST NOT be used in production!
|
| If you need to allow multiple domains, remember that this file is still
| a PHP script and you can easily do that on your own.
|
*/
$config['base_url'] = 'http://rssa-pintar.rssa';
/*
|--------------------------------------------------------------------------
| Index File
|--------------------------------------------------------------------------
|
| Typically this will be your index.php file, unless you've renamed it to
| something else. If you are using mod_rewrite to remove the page set this
| variable so that it is blank.
|
*/
$config['index_page'] = '';
/*
|--------------------------------------------------------------------------
| URI PROTOCOL
|--------------------------------------------------------------------------
|
| This item determines which server global should be used to retrieve the
| URI string. The default setting of 'AUTO' works for most servers.
| If your links do not seem to work, try one of the other delicious flavors:
|
| 'AUTO' Default - auto detects
| 'PATH_INFO' Uses the PATH_INFO
| 'QUERY_STRING' Uses the QUERY_STRING
| 'REQUEST_URI' Uses the REQUEST_URI
| 'ORIG_PATH_INFO' Uses the ORIG_PATH_INFO
|
*/
$config['uri_protocol'] = 'AUTO';
/*
|--------------------------------------------------------------------------
| URL suffix
|--------------------------------------------------------------------------
|
| This option allows you to add a suffix to all URLs generated by CodeIgniter.
| For more information please see the user guide:
|
| http://codeigniter.com/user_guide/general/urls.html
*/
$config['url_suffix'] = '';
/*
|--------------------------------------------------------------------------
| Default Language
|--------------------------------------------------------------------------
|
| This determines which set of language files should be used. Make sure
| there is an available translation if you intend to use something other
| than english.
|
*/
$config['language'] = 'english';
/*
|--------------------------------------------------------------------------
| Default Character Set
|--------------------------------------------------------------------------
|
| This determines which character set is used by default in various methods
| that require a character set to be provided.
|
*/
$config['charset'] = 'UTF-8';
/*
|--------------------------------------------------------------------------
| Enable/Disable System Hooks
|--------------------------------------------------------------------------
|
| If you would like to use the 'hooks' feature you must enable it by
| setting this variable to TRUE (boolean). See the user guide for details.
|
*/
$config['enable_hooks'] = FALSE;
/*
|--------------------------------------------------------------------------
| Class Extension Prefix
|--------------------------------------------------------------------------
|
| This item allows you to set the filename/classname prefix when extending
| native libraries. For more information please see the user guide:
|
| http://codeigniter.com/user_guide/general/core_classes.html
| http://codeigniter.com/user_guide/general/creating_libraries.html
|
*/
$config['subclass_prefix'] = 'MY_';
/*
|--------------------------------------------------------------------------
| Allowed URL Characters
|--------------------------------------------------------------------------
|
| This lets you specify with a regular expression which characters are permitted
| within your URLs. When someone tries to submit a URL with disallowed
| characters they will get a warning message.
|
| As a security measure you are STRONGLY encouraged to restrict URLs to
| as few characters as possible. By default only these are allowed: a-z 0-9~%.:_-
|
| Leave blank to allow all characters -- but only if you are insane.
|
| DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!!
|
*/
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
/*
|--------------------------------------------------------------------------
| Enable Query Strings
|--------------------------------------------------------------------------
|
| By default CodeIgniter uses search-engine friendly segment based URLs:
| example.com/who/what/where/
|
| By default CodeIgniter enables access to the $_GET array. If for some
| reason you would like to disable it, set 'allow_get_array' to FALSE.
|
| You can optionally enable standard query string based URLs:
| example.com?who=me&what=something&where=here
|
| Options are: TRUE or FALSE (boolean)
|
| The other items let you set the query string 'words' that will
| invoke your controllers and its functions:
| example.com/index.php?c=controller&m=function
|
| Please note that some of the helpers won't work as expected when
| this feature is enabled, since CodeIgniter is designed primarily to
| use segment based URLs.
|
*/
$config['allow_get_array'] = TRUE;
$config['enable_query_strings'] = FALSE;
$config['controller_trigger'] = 'c';
$config['function_trigger'] = 'm';
$config['directory_trigger'] = 'd'; // experimental not currently in use
/*
|--------------------------------------------------------------------------
| Error Logging Threshold
|--------------------------------------------------------------------------
|
| If you have enabled error logging, you can set an error threshold to
| determine what gets logged. Threshold options are:
| You can enable error logging by setting a threshold over zero. The
| threshold determines what gets logged. Threshold options are:
|
| 0 = Disables logging, Error logging TURNED OFF
| 1 = Error Messages (including PHP errors)
| 2 = Debug Messages
| 3 = Informational Messages
| 4 = All Messages
|
| For a live site you'll usually only enable Errors (1) to be logged otherwise
| your log files will fill up very fast.
|
*/
$config['log_threshold'] = 0;
/*
|--------------------------------------------------------------------------
| Error Logging Directory Path
|--------------------------------------------------------------------------
|
| Leave this BLANK unless you would like to set something other than the default
| application/logs/ folder. Use a full server path with trailing slash.
|
*/
$config['log_path'] = '';
/*
|--------------------------------------------------------------------------
| Date Format for Logs
|--------------------------------------------------------------------------
|
| Each item that is logged has an associated date. You can use PHP date
| codes to set your own date formatting
|
*/
$config['log_date_format'] = 'Y-m-d H:i:s';
/*
|--------------------------------------------------------------------------
| Cache Directory Path
|--------------------------------------------------------------------------
|
| Leave this BLANK unless you would like to set something other than the default
| system/cache/ folder. Use a full server path with trailing slash.
|
*/
$config['cache_path'] = '';
/*
|--------------------------------------------------------------------------
| Encryption Key
|--------------------------------------------------------------------------
|
| If you use the Encryption class or the Session class you
| MUST set an encryption key. See the user guide for info.
|
*/
$config['encryption_key'] = 'B3b4SSsss555';
/*
|--------------------------------------------------------------------------
| Session Variables
|--------------------------------------------------------------------------
|
| 'sess_cookie_name' = the name you want for the cookie
| 'sess_expiration' = the number of SECONDS you want the session to last.
| by default sessions last 7200 seconds (two hours). Set to zero for no expiration.
| 'sess_expire_on_close' = Whether to cause the session to expire automatically
| when the browser window is closed
| 'sess_encrypt_cookie' = Whether to encrypt the cookie
| 'sess_use_database' = Whether to save the session data to a database
| 'sess_table_name' = The name of the session database table
| 'sess_match_ip' = Whether to match the user's IP address when reading the session data
| 'sess_match_useragent' = Whether to match the User Agent when reading the session data
| 'sess_time_to_update' = how many seconds between CI refreshing Session Information
|
*/
$config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 7200;
$config['sess_expire_on_close'] = FALSE;
$config['sess_encrypt_cookie'] = FALSE;
$config['sess_use_database'] = FALSE;
$config['sess_table_name'] = 'ci_sessions';
$config['sess_match_ip'] = FALSE;
$config['sess_match_useragent'] = TRUE;
$config['sess_time_to_update'] = 300;
/*
|--------------------------------------------------------------------------
| Cookie Related Variables
|--------------------------------------------------------------------------
|
| 'cookie_prefix' = Set a prefix if you need to avoid collisions
| 'cookie_domain' = Set to .your-domain.com for site-wide cookies
| 'cookie_path' = Typically will be a forward slash
| 'cookie_secure' = Cookies will only be set if a secure HTTPS connection exists.
|
*/
$config['cookie_prefix'] = "";
$config['cookie_domain'] = "";
$config['cookie_path'] = "/";
$config['cookie_secure'] = FALSE;
/*
|--------------------------------------------------------------------------
| Global XSS Filtering
|--------------------------------------------------------------------------
|
| Determines whether the XSS filter is always active when GET, POST or
| COOKIE data is encountered
|
*/
$config['global_xss_filtering'] = FALSE;
/*
|--------------------------------------------------------------------------
| Cross Site Request Forgery
|--------------------------------------------------------------------------
| Enables a CSRF cookie token to be set. When set to TRUE, token will be
| checked on a submitted form. If you are accepting user data, it is strongly
| recommended CSRF protection be enabled.
|
| 'csrf_token_name' = The token name
| 'csrf_cookie_name' = The cookie name
| 'csrf_expire' = The number in seconds the token should expire.
*/
$config['csrf_protection'] = FALSE;
$config['csrf_token_name'] = 'csrf_test_name';
$config['csrf_cookie_name'] = 'csrf_cookie_name';
$config['csrf_expire'] = 7200;
/*
|--------------------------------------------------------------------------
| Output Compression
|--------------------------------------------------------------------------
|
| Enables Gzip output compression for faster page loads. When enabled,
| the output class will test whether your server supports Gzip.
| Even if it does, however, not all browsers support compression
| so enable only if you are reasonably sure your visitors can handle it.
|
| VERY IMPORTANT: If you are getting a blank page when compression is enabled it
| means you are prematurely outputting something to your browser. It could
| even be a line of whitespace at the end of one of your scripts. For
| compression to work, nothing can be sent before the output buffer is called
| by the output class. Do not 'echo' any values with compression enabled.
|
*/
$config['compress_output'] = FALSE;
/*
|--------------------------------------------------------------------------
| Master Time Reference
|--------------------------------------------------------------------------
|
| Options are 'local' or 'gmt'. This pref tells the system whether to use
| your server's local time as the master 'now' reference, or convert it to
| GMT. See the 'date helper' page of the user guide for information
| regarding date handling.
|
*/
$config['time_reference'] = 'local';
/*
|--------------------------------------------------------------------------
| Rewrite PHP Short Tags
|--------------------------------------------------------------------------
|
| If your PHP installation does not have short tag support enabled CI
| can rewrite the tags on-the-fly, enabling you to utilize that syntax
| in your view files. Options are TRUE or FALSE (boolean)
|
*/
$config['rewrite_short_tags'] = FALSE;
/*
|--------------------------------------------------------------------------
| Reverse Proxy IPs
|--------------------------------------------------------------------------
|
| If your server is behind a reverse proxy, you must whitelist the proxy IP
| addresses from which CodeIgniter should trust the HTTP_X_FORWARDED_FOR
| header in order to properly identify the visitor's IP address.
| Comma-delimited, e.g. '10.0.1.200,10.0.1.201'
|
*/
$config['proxy_ips'] = '';
/* End of file config.php */
/* Location: ./application/config/config.php */

View File

@@ -0,0 +1,41 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| File and Directory Modes
|--------------------------------------------------------------------------
|
| These prefs are used when checking and setting modes when working
| with the file system. The defaults are fine on servers with proper
| security, but you may wish (or even need) to change the values in
| certain environments (Apache running a separate process for each
| user, PHP under CGI with Apache suEXEC, etc.). Octal values should
| always be used to set the mode correctly.
|
*/
define('FILE_READ_MODE', 0644);
define('FILE_WRITE_MODE', 0666);
define('DIR_READ_MODE', 0755);
define('DIR_WRITE_MODE', 0777);
/*
|--------------------------------------------------------------------------
| File Stream Modes
|--------------------------------------------------------------------------
|
| These modes are used when working with fopen()/popen()
|
*/
define('FOPEN_READ', 'rb');
define('FOPEN_READ_WRITE', 'r+b');
define('FOPEN_WRITE_CREATE_DESTRUCTIVE', 'wb'); // truncates existing file data, use with care
define('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE', 'w+b'); // truncates existing file data, use with care
define('FOPEN_WRITE_CREATE', 'ab');
define('FOPEN_READ_WRITE_CREATE', 'a+b');
define('FOPEN_WRITE_CREATE_STRICT', 'xb');
define('FOPEN_READ_WRITE_CREATE_STRICT', 'x+b');
/* End of file constants.php */
/* Location: ./application/config/constants.php */

View File

@@ -0,0 +1,69 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| DATABASE CONNECTIVITY SETTINGS
| -------------------------------------------------------------------
| This file will contain the settings needed to access your database.
|
| For complete instructions please consult the 'Database Connection'
| page of the User Guide.
|
| -------------------------------------------------------------------
| EXPLANATION OF VARIABLES
| -------------------------------------------------------------------
|
| ['hostname'] The hostname of your database server.
| ['username'] The username used to connect to the database
| ['password'] The password used to connect to the database
| ['database'] The name of the database you want to connect to
| ['dbdriver'] The database type. ie: mysql. Currently supported:
mysql, mysqli, postgre, odbc, mssql, sqlite, oci8
| ['dbprefix'] You can add an optional prefix, which will be added
| to the table name when using the Active Record class
| ['pconnect'] TRUE/FALSE - Whether to use a persistent connection
| ['db_debug'] TRUE/FALSE - Whether database errors should be displayed.
| ['cache_on'] TRUE/FALSE - Enables/disables query caching
| ['cachedir'] The path to the folder where cache files should be stored
| ['char_set'] The character set used in communicating with the database
| ['dbcollat'] The character collation used in communicating with the database
| NOTE: For MySQL and MySQLi databases, this setting is only used
| as a backup if your server is running PHP < 5.2.3 or MySQL < 5.0.7
| (and in table creation queries made with DB Forge).
| There is an incompatibility in PHP with mysql_real_escape_string() which
| can make your site vulnerable to SQL injection if you are using a
| multi-byte character set and are running versions lower than these.
| Sites using Latin-1 or UTF-8 database character set and collation are unaffected.
| ['swap_pre'] A default table prefix that should be swapped with the dbprefix
| ['autoinit'] Whether or not to automatically initialize the database.
| ['stricton'] TRUE/FALSE - forces 'Strict Mode' connections
| - good for ensuring strict SQL while developing
|
| The $active_group variable lets you choose which connection group to
| make active. By default there is only one group (the 'default' group).
|
| The $active_record variables lets you determine whether or not to load
| the active record class
*/
$active_group = 'default';
$active_record = TRUE;
$db['default']['hostname'] = 'localhost';
$db['default']['username'] = 'www-data';
$db['default']['password'] = 'www-data';
$db['default']['database'] = 'rssa_pintar';
$db['default']['dbdriver'] = 'mysqli';
$db['default']['dbprefix'] = '';
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = '';
$db['default']['char_set'] = 'utf8';
$db['default']['dbcollat'] = 'utf8_general_ci';
$db['default']['swap_pre'] = '';
$db['default']['autoinit'] = TRUE;
$db['default']['stricton'] = FALSE;
/* End of file database.php */
/* Location: ./application/config/database.php */

View File

@@ -0,0 +1,15 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
$_doctypes = array(
'xhtml11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">',
'xhtml1-strict' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">',
'xhtml1-trans' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',
'xhtml1-frame' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">',
'html5' => '<!DOCTYPE html>',
'html4-strict' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">',
'html4-trans' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">',
'html4-frame' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">'
);
/* End of file doctypes.php */
/* Location: ./application/config/doctypes.php */

View File

@@ -0,0 +1,64 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| Foreign Characters
| -------------------------------------------------------------------
| This file contains an array of foreign characters for transliteration
| conversion used by the Text helper
|
*/
$foreign_characters = array(
'/ä|æ|ǽ/' => 'ae',
'/ö|œ/' => 'oe',
'/ü/' => 'ue',
'/Ä/' => 'Ae',
'/Ü/' => 'Ue',
'/Ö/' => 'Oe',
'/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ/' => 'A',
'/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª/' => 'a',
'/Ç|Ć|Ĉ|Ċ|Č/' => 'C',
'/ç|ć|ĉ|ċ|č/' => 'c',
'/Ð|Ď|Đ/' => 'D',
'/ð|ď|đ/' => 'd',
'/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě/' => 'E',
'/è|é|ê|ë|ē|ĕ|ė|ę|ě/' => 'e',
'/Ĝ|Ğ|Ġ|Ģ/' => 'G',
'/ĝ|ğ|ġ|ģ/' => 'g',
'/Ĥ|Ħ/' => 'H',
'/ĥ|ħ/' => 'h',
'/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ/' => 'I',
'/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı/' => 'i',
'/Ĵ/' => 'J',
'/ĵ/' => 'j',
'/Ķ/' => 'K',
'/ķ/' => 'k',
'/Ĺ|Ļ|Ľ|Ŀ|Ł/' => 'L',
'/ĺ|ļ|ľ|ŀ|ł/' => 'l',
'/Ñ|Ń|Ņ|Ň/' => 'N',
'/ñ|ń|ņ|ň|ʼn/' => 'n',
'/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ/' => 'O',
'/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º/' => 'o',
'/Ŕ|Ŗ|Ř/' => 'R',
'/ŕ|ŗ|ř/' => 'r',
'/Ś|Ŝ|Ş|Š/' => 'S',
'/ś|ŝ|ş|š|ſ/' => 's',
'/Ţ|Ť|Ŧ/' => 'T',
'/ţ|ť|ŧ/' => 't',
'/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ/' => 'U',
'/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ/' => 'u',
'/Ý|Ÿ|Ŷ/' => 'Y',
'/ý|ÿ|ŷ/' => 'y',
'/Ŵ/' => 'W',
'/ŵ/' => 'w',
'/Ź|Ż|Ž/' => 'Z',
'/ź|ż|ž/' => 'z',
'/Æ|Ǽ/' => 'AE',
'/ß/'=> 'ss',
'/IJ/' => 'IJ',
'/ij/' => 'ij',
'/Œ/' => 'OE',
'/ƒ/' => 'f'
);
/* End of file foreign_chars.php */
/* Location: ./application/config/foreign_chars.php */

View File

@@ -0,0 +1,16 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| Hooks
| -------------------------------------------------------------------------
| This file lets you define "hooks" to extend CI without hacking the core
| files. Please see the user guide for info:
|
| http://codeigniter.com/user_guide/general/hooks.html
|
*/
/* End of file hooks.php */
/* Location: ./application/config/hooks.php */

View File

@@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@@ -0,0 +1,41 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| Enable/Disable Migrations
|--------------------------------------------------------------------------
|
| Migrations are disabled by default but should be enabled
| whenever you intend to do a schema migration.
|
*/
$config['migration_enabled'] = FALSE;
/*
|--------------------------------------------------------------------------
| Migrations version
|--------------------------------------------------------------------------
|
| This is used to set migration version that the file system should be on.
| If you run $this->migration->latest() this is the version that schema will
| be upgraded / downgraded to.
|
*/
$config['migration_version'] = 0;
/*
|--------------------------------------------------------------------------
| Migrations Path
|--------------------------------------------------------------------------
|
| Path to your migrations folder.
| Typically, it will be within your application path.
| Also, writing permission is required within the migrations path.
|
*/
$config['migration_path'] = APPPATH . 'migrations/';
/* End of file migration.php */
/* Location: ./application/config/migration.php */

View File

@@ -0,0 +1,106 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| MIME TYPES
| -------------------------------------------------------------------
| This file contains an array of mime types. It is used by the
| Upload class to help identify allowed file types.
|
*/
$mimes = array( 'hqx' => 'application/mac-binhex40',
'cpt' => 'application/mac-compactpro',
'csv' => array('text/x-comma-separated-values', 'text/comma-separated-values', 'application/octet-stream', 'application/vnd.ms-excel', 'application/x-csv', 'text/x-csv', 'text/csv', 'application/csv', 'application/excel', 'application/vnd.msexcel'),
'bin' => 'application/macbinary',
'dms' => 'application/octet-stream',
'lha' => 'application/octet-stream',
'lzh' => 'application/octet-stream',
'exe' => array('application/octet-stream', 'application/x-msdownload'),
'class' => 'application/octet-stream',
'psd' => 'application/x-photoshop',
'so' => 'application/octet-stream',
'sea' => 'application/octet-stream',
'dll' => 'application/octet-stream',
'oda' => 'application/oda',
'pdf' => array('application/pdf', 'application/x-download'),
'ai' => 'application/postscript',
'eps' => 'application/postscript',
'ps' => 'application/postscript',
'smi' => 'application/smil',
'smil' => 'application/smil',
'mif' => 'application/vnd.mif',
'xls' => array('application/excel', 'application/vnd.ms-excel', 'application/msexcel'),
'ppt' => array('application/powerpoint', 'application/vnd.ms-powerpoint'),
'wbxml' => 'application/wbxml',
'wmlc' => 'application/wmlc',
'dcr' => 'application/x-director',
'dir' => 'application/x-director',
'dxr' => 'application/x-director',
'dvi' => 'application/x-dvi',
'gtar' => 'application/x-gtar',
'gz' => 'application/x-gzip',
'php' => 'application/x-httpd-php',
'php4' => 'application/x-httpd-php',
'php3' => 'application/x-httpd-php',
'phtml' => 'application/x-httpd-php',
'phps' => 'application/x-httpd-php-source',
'js' => 'application/x-javascript',
'swf' => 'application/x-shockwave-flash',
'sit' => 'application/x-stuffit',
'tar' => 'application/x-tar',
'tgz' => array('application/x-tar', 'application/x-gzip-compressed'),
'xhtml' => 'application/xhtml+xml',
'xht' => 'application/xhtml+xml',
'zip' => array('application/x-zip', 'application/zip', 'application/x-zip-compressed'),
'mid' => 'audio/midi',
'midi' => 'audio/midi',
'mpga' => 'audio/mpeg',
'mp2' => 'audio/mpeg',
'mp3' => array('audio/mpeg', 'audio/mpg', 'audio/mpeg3', 'audio/mp3'),
'aif' => 'audio/x-aiff',
'aiff' => 'audio/x-aiff',
'aifc' => 'audio/x-aiff',
'ram' => 'audio/x-pn-realaudio',
'rm' => 'audio/x-pn-realaudio',
'rpm' => 'audio/x-pn-realaudio-plugin',
'ra' => 'audio/x-realaudio',
'rv' => 'video/vnd.rn-realvideo',
'wav' => array('audio/x-wav', 'audio/wave', 'audio/wav'),
'bmp' => array('image/bmp', 'image/x-windows-bmp'),
'gif' => 'image/gif',
'jpeg' => array('image/jpeg', 'image/pjpeg'),
'jpg' => array('image/jpeg', 'image/pjpeg'),
'jpe' => array('image/jpeg', 'image/pjpeg'),
'png' => array('image/png', 'image/x-png'),
'tiff' => 'image/tiff',
'tif' => 'image/tiff',
'css' => 'text/css',
'html' => 'text/html',
'htm' => 'text/html',
'shtml' => 'text/html',
'txt' => 'text/plain',
'text' => 'text/plain',
'log' => array('text/plain', 'text/x-log'),
'rtx' => 'text/richtext',
'rtf' => 'text/rtf',
'xml' => 'text/xml',
'xsl' => 'text/xml',
'mpeg' => 'video/mpeg',
'mpg' => 'video/mpeg',
'mpe' => 'video/mpeg',
'qt' => 'video/quicktime',
'mov' => 'video/quicktime',
'avi' => 'video/x-msvideo',
'movie' => 'video/x-sgi-movie',
'doc' => 'application/msword',
'docx' => array('application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/zip'),
'xlsx' => array('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/zip'),
'word' => array('application/msword', 'application/octet-stream'),
'xl' => 'application/excel',
'eml' => 'message/rfc822',
'json' => array('application/json', 'text/json')
);
/* End of file mimes.php */
/* Location: ./application/config/mimes.php */

View File

@@ -0,0 +1,17 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| Profiler Sections
| -------------------------------------------------------------------------
| This file lets you determine whether or not various sections of Profiler
| data are displayed when the Profiler is enabled.
| Please see the user guide for info:
|
| http://codeigniter.com/user_guide/general/profiling.html
|
*/
/* End of file profiler.php */
/* Location: ./application/config/profiler.php */

View File

@@ -0,0 +1,46 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| URI ROUTING
| -------------------------------------------------------------------------
| This file lets you re-map URI requests to specific controller functions.
|
| Typically there is a one-to-one relationship between a URL string
| and its corresponding controller class/method. The segments in a
| URL normally follow this pattern:
|
| example.com/class/method/id/
|
| In some instances, however, you may want to remap this relationship
| so that a different class/function is called than the one
| corresponding to the URL.
|
| Please see the user guide for complete details:
|
| http://codeigniter.com/user_guide/general/routing.html
|
| -------------------------------------------------------------------------
| RESERVED ROUTES
| -------------------------------------------------------------------------
|
| There area two reserved routes:
|
| $route['default_controller'] = 'welcome';
|
| This route indicates which controller class should be loaded if the
| URI contains no data. In the above example, the "welcome" class
| would be loaded.
|
| $route['404_override'] = 'errors/page_missing';
|
| This route will tell the Router what URI segments to use if those provided
| in the URL cannot be matched to a valid route.
|
*/
$route['default_controller'] = "welcome";
$route['404_override'] = '';
/* End of file routes.php */
/* Location: ./application/config/routes.php */

View File

@@ -0,0 +1,66 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| SMILEYS
| -------------------------------------------------------------------
| This file contains an array of smileys for use with the emoticon helper.
| Individual images can be used to replace multiple simileys. For example:
| :-) and :) use the same image replacement.
|
| Please see user guide for more info:
| http://codeigniter.com/user_guide/helpers/smiley_helper.html
|
*/
$smileys = array(
// smiley image name width height alt
':-)' => array('grin.gif', '19', '19', 'grin'),
':lol:' => array('lol.gif', '19', '19', 'LOL'),
':cheese:' => array('cheese.gif', '19', '19', 'cheese'),
':)' => array('smile.gif', '19', '19', 'smile'),
';-)' => array('wink.gif', '19', '19', 'wink'),
';)' => array('wink.gif', '19', '19', 'wink'),
':smirk:' => array('smirk.gif', '19', '19', 'smirk'),
':roll:' => array('rolleyes.gif', '19', '19', 'rolleyes'),
':-S' => array('confused.gif', '19', '19', 'confused'),
':wow:' => array('surprise.gif', '19', '19', 'surprised'),
':bug:' => array('bigsurprise.gif', '19', '19', 'big surprise'),
':-P' => array('tongue_laugh.gif', '19', '19', 'tongue laugh'),
'%-P' => array('tongue_rolleye.gif', '19', '19', 'tongue rolleye'),
';-P' => array('tongue_wink.gif', '19', '19', 'tongue wink'),
':P' => array('raspberry.gif', '19', '19', 'raspberry'),
':blank:' => array('blank.gif', '19', '19', 'blank stare'),
':long:' => array('longface.gif', '19', '19', 'long face'),
':ohh:' => array('ohh.gif', '19', '19', 'ohh'),
':grrr:' => array('grrr.gif', '19', '19', 'grrr'),
':gulp:' => array('gulp.gif', '19', '19', 'gulp'),
'8-/' => array('ohoh.gif', '19', '19', 'oh oh'),
':down:' => array('downer.gif', '19', '19', 'downer'),
':red:' => array('embarrassed.gif', '19', '19', 'red face'),
':sick:' => array('sick.gif', '19', '19', 'sick'),
':shut:' => array('shuteye.gif', '19', '19', 'shut eye'),
':-/' => array('hmm.gif', '19', '19', 'hmmm'),
'>:(' => array('mad.gif', '19', '19', 'mad'),
':mad:' => array('mad.gif', '19', '19', 'mad'),
'>:-(' => array('angry.gif', '19', '19', 'angry'),
':angry:' => array('angry.gif', '19', '19', 'angry'),
':zip:' => array('zip.gif', '19', '19', 'zipper'),
':kiss:' => array('kiss.gif', '19', '19', 'kiss'),
':ahhh:' => array('shock.gif', '19', '19', 'shock'),
':coolsmile:' => array('shade_smile.gif', '19', '19', 'cool smile'),
':coolsmirk:' => array('shade_smirk.gif', '19', '19', 'cool smirk'),
':coolgrin:' => array('shade_grin.gif', '19', '19', 'cool grin'),
':coolhmm:' => array('shade_hmm.gif', '19', '19', 'cool hmm'),
':coolmad:' => array('shade_mad.gif', '19', '19', 'cool mad'),
':coolcheese:' => array('shade_cheese.gif', '19', '19', 'cool cheese'),
':vampire:' => array('vampire.gif', '19', '19', 'vampire'),
':snake:' => array('snake.gif', '19', '19', 'snake'),
':exclaim:' => array('exclaim.gif', '19', '19', 'excaim'),
':question:' => array('question.gif', '19', '19', 'question') // no comma after last item
);
/* End of file smileys.php */
/* Location: ./application/config/smileys.php */

View File

@@ -0,0 +1,178 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| USER AGENT TYPES
| -------------------------------------------------------------------
| This file contains four arrays of user agent data. It is used by the
| User Agent Class to help identify browser, platform, robot, and
| mobile device data. The array keys are used to identify the device
| and the array values are used to set the actual name of the item.
|
*/
$platforms = array (
'windows nt 6.0' => 'Windows Longhorn',
'windows nt 5.2' => 'Windows 2003',
'windows nt 5.0' => 'Windows 2000',
'windows nt 5.1' => 'Windows XP',
'windows nt 4.0' => 'Windows NT 4.0',
'winnt4.0' => 'Windows NT 4.0',
'winnt 4.0' => 'Windows NT',
'winnt' => 'Windows NT',
'windows 98' => 'Windows 98',
'win98' => 'Windows 98',
'windows 95' => 'Windows 95',
'win95' => 'Windows 95',
'windows' => 'Unknown Windows OS',
'os x' => 'Mac OS X',
'ppc mac' => 'Power PC Mac',
'freebsd' => 'FreeBSD',
'ppc' => 'Macintosh',
'linux' => 'Linux',
'debian' => 'Debian',
'sunos' => 'Sun Solaris',
'beos' => 'BeOS',
'apachebench' => 'ApacheBench',
'aix' => 'AIX',
'irix' => 'Irix',
'osf' => 'DEC OSF',
'hp-ux' => 'HP-UX',
'netbsd' => 'NetBSD',
'bsdi' => 'BSDi',
'openbsd' => 'OpenBSD',
'gnu' => 'GNU/Linux',
'unix' => 'Unknown Unix OS'
);
// The order of this array should NOT be changed. Many browsers return
// multiple browser types so we want to identify the sub-type first.
$browsers = array(
'Flock' => 'Flock',
'Chrome' => 'Chrome',
'Opera' => 'Opera',
'MSIE' => 'Internet Explorer',
'Internet Explorer' => 'Internet Explorer',
'Shiira' => 'Shiira',
'Firefox' => 'Firefox',
'Chimera' => 'Chimera',
'Phoenix' => 'Phoenix',
'Firebird' => 'Firebird',
'Camino' => 'Camino',
'Netscape' => 'Netscape',
'OmniWeb' => 'OmniWeb',
'Safari' => 'Safari',
'Mozilla' => 'Mozilla',
'Konqueror' => 'Konqueror',
'icab' => 'iCab',
'Lynx' => 'Lynx',
'Links' => 'Links',
'hotjava' => 'HotJava',
'amaya' => 'Amaya',
'IBrowse' => 'IBrowse'
);
$mobiles = array(
// legacy array, old values commented out
'mobileexplorer' => 'Mobile Explorer',
// 'openwave' => 'Open Wave',
// 'opera mini' => 'Opera Mini',
// 'operamini' => 'Opera Mini',
// 'elaine' => 'Palm',
'palmsource' => 'Palm',
// 'digital paths' => 'Palm',
// 'avantgo' => 'Avantgo',
// 'xiino' => 'Xiino',
'palmscape' => 'Palmscape',
// 'nokia' => 'Nokia',
// 'ericsson' => 'Ericsson',
// 'blackberry' => 'BlackBerry',
// 'motorola' => 'Motorola'
// Phones and Manufacturers
'motorola' => "Motorola",
'nokia' => "Nokia",
'palm' => "Palm",
'iphone' => "Apple iPhone",
'ipad' => "iPad",
'ipod' => "Apple iPod Touch",
'sony' => "Sony Ericsson",
'ericsson' => "Sony Ericsson",
'blackberry' => "BlackBerry",
'cocoon' => "O2 Cocoon",
'blazer' => "Treo",
'lg' => "LG",
'amoi' => "Amoi",
'xda' => "XDA",
'mda' => "MDA",
'vario' => "Vario",
'htc' => "HTC",
'samsung' => "Samsung",
'sharp' => "Sharp",
'sie-' => "Siemens",
'alcatel' => "Alcatel",
'benq' => "BenQ",
'ipaq' => "HP iPaq",
'mot-' => "Motorola",
'playstation portable' => "PlayStation Portable",
'hiptop' => "Danger Hiptop",
'nec-' => "NEC",
'panasonic' => "Panasonic",
'philips' => "Philips",
'sagem' => "Sagem",
'sanyo' => "Sanyo",
'spv' => "SPV",
'zte' => "ZTE",
'sendo' => "Sendo",
// Operating Systems
'symbian' => "Symbian",
'SymbianOS' => "SymbianOS",
'elaine' => "Palm",
'palm' => "Palm",
'series60' => "Symbian S60",
'windows ce' => "Windows CE",
// Browsers
'obigo' => "Obigo",
'netfront' => "Netfront Browser",
'openwave' => "Openwave Browser",
'mobilexplorer' => "Mobile Explorer",
'operamini' => "Opera Mini",
'opera mini' => "Opera Mini",
// Other
'digital paths' => "Digital Paths",
'avantgo' => "AvantGo",
'xiino' => "Xiino",
'novarra' => "Novarra Transcoder",
'vodafone' => "Vodafone",
'docomo' => "NTT DoCoMo",
'o2' => "O2",
// Fallback
'mobile' => "Generic Mobile",
'wireless' => "Generic Mobile",
'j2me' => "Generic Mobile",
'midp' => "Generic Mobile",
'cldc' => "Generic Mobile",
'up.link' => "Generic Mobile",
'up.browser' => "Generic Mobile",
'smartphone' => "Generic Mobile",
'cellphone' => "Generic Mobile"
);
// There are hundreds of bots but these are the most common.
$robots = array(
'googlebot' => 'Googlebot',
'msnbot' => 'MSNBot',
'slurp' => 'Inktomi Slurp',
'yahoo' => 'Yahoo',
'askjeeves' => 'AskJeeves',
'fastcrawler' => 'FastCrawler',
'infoseek' => 'InfoSeek Robot 1.0',
'lycos' => 'Lycos'
);
/* End of file user_agents.php */
/* Location: ./application/config/user_agents.php */

View File

@@ -0,0 +1,133 @@
<?php
use chriskacerguis\RestServer\RestController;
defined('BASEPATH') or exit('No direct script access allowed');
class Api_rssa extends RestController
{
var $module = 'api/login'; //ini nama module
function __construct()
{
parent::__construct();
Modules::run('security/common_security', $this->module);
}
public function index_get()
{
//$this->api_login("meninjar@simrs", "dibawahmejasaya");
$this->api_connect("pasien", "Y1hLd2tUeTdBSGt6c05sOWxoWmVwV1B6SllkYVhZaHBlTXpJZWNxUw==", "10026543");
exit;
//$data = $this->db->get('master_user')->result();
$array_query = [
'select' => 'master_user.*',
'from' => 'master_user',
'order_by' => 'master_user.mu_id, ASC'
];
$get_all_data = Modules::run('database/get', $array_query)->result();
$get_data = Modules::run('database/get', ['from' => 'master_user', 'order_by' => 'mu_id'])->result();
//$data = 'Data Berhasil Load Data';
$this->response($get_data, RestController::HTTP_OK);
}
public function login_post()
{
$request = $this->post();
$response = null;
$method = $this->_detect_method();
try {
$username = isset($request['username']) ? $request['username'] : '';
$password = isset($request['password']) ? $request['password'] : '';
if ($username == "" || $password == "") {
$response = response_error("Username dan password harus diisi");
$this->set_response($response, RestController::HTTP_BAD_REQUEST);
return;
}
$where = array(
"username" => $username
);
$user_data = $this->m_common->get('user', $where)->row();
$response = response_error("Username atau password salah");
if (isset($user_data)) {
$is_password_valid = verify_password($password, $user_data->password);
unset($user_data->password);
if ($is_password_valid)
$response = response_success();
}
if (!$response['success']) {
$this->set_response($response, RestController::HTTP_UNAUTHORIZED);
return;
}
$response = response_success("Login berhasil");
$this->set_response($response, RestController::HTTP_OK);
} catch (Exception $ex) {
$response = response_error($ex->getMessage());
// $this->set_response($response, RestController::HTTP_INTERNAL_SERVER_ERROR);
}
}
public function api_connect($param, $token, $value)
{
//$url = "http://10.10.123.63:9000/api/pasien/10026543";
$url = "http://10.10.123.63:9000/api/" . $param . "/" . $value;
//print_r($url);
$authorization = "x-token:" . $token;
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => [$authorization],
CURLOPT_URL => $url
]);
$return = curl_exec($ch);
$result = array();
$api_array = json_decode($return, TRUE);
print_r($api_array);
return $result;
}
public function api_login($username, $password)
{
// http://10.10.123.63:9000/api/login?email=ragil@simrs&password=gantenggantengserigala2022
$url = "http://10.10.123.63:9000/api/login?email=" . $username . "&password=" . $password;
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_URL => $url
]);
$return = curl_exec($ch);
$result = array();
$api_array = json_decode($return, TRUE);
print_r($api_array);
//print_r($api_array['code']);
/*if ($api_array['code'] == '200') {
$result['status'] = TRUE;
$result['content'] = $api_array['content'];
} else {
$result['status'] = FALSE;
$result['content'] = "connect api failed, try again";
}*/
}
}

View File

@@ -0,0 +1,60 @@
<?php
class Apiconection extends CI_Controller{
public function api_connect($param, $token, $value)
{
//$url = "http://10.10.123.63:9000/api/pasien/10026543";
$url = "http://10.10.123.63:9000/api/" . $param . "/" . $value;
//print_r($url);
$authorization = "x-token:" . $token;
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => [$authorization],
CURLOPT_URL => $url
]);
$return = curl_exec($ch);
$result = array();
$api_array = json_decode($return, TRUE);
print_r($api_array);
return $result;
}
public function api_login($username, $password)
{
// http://10.10.123.63:9000/api/login?email=ragil@simrs&password=gantenggantengserigala2022
$url = "http://10.10.123.63:9000/api/login?email=" . $username . "&password=" . $password;
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_URL => $url
]);
$return = curl_exec($ch);
$result = array();
$api_array = json_decode($return, TRUE);
print_r($api_array);
//print_r($api_array['code']);
/*if ($api_array['code'] == '200') {
$result['status'] = TRUE;
$result['content'] = $api_array['content'];
} else {
$result['status'] = FALSE;
$result['content'] = "connect api failed, try again";
}*/
}
}
?>

View File

@@ -0,0 +1,29 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Login extends CI_Controller{
function __construct(){
parent::__construct();
}
public function index($error = NULL){
$data['error']=$error;
$this->load->view('login/v_login',$data);
}
public function process(){
$this->load->model('m_login');
$result = $this->m_login->validate();
if(! $result){
$error = '<div class="alert alert-danger alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">x</button>
<i class="icon fa fa-ban"></i> Username atau Password Salah!
</div>';
$this->index($error);
}else{
redirect('index.php');
}
}
public function logout(){
$this->session->sess_destroy();
redirect('index.php/login');
}
}
?>

View File

@@ -0,0 +1,87 @@
<?php
//-------------ID user login = 18
class Ps_datapenunjang extends CI_Controller {
//-----------start variables for check action access----------//
public $vartambah = null;
public $varedit = null;
public $vardelete = null;
public $varview = null;
//-----------start variables for check action access----------//
function __construct(){
parent::__construct();
$this->check_isvalidated();
$this->load->helper(array('form', 'date'));
}
private function check_isvalidated(){
if(! $this->session->userdata('validated_rssapintar')){
redirect('index.php/login');
}
//--------------start check access this form page-------------//
$this->db->where('mum_tipeuser_id', $this->session->userdata('s_FK_TipeUser_rssapintar'));
$this->db->where('mum_menu_id', '18');
$cekMenu = $this->db->get('master_user_menu');
$rowcount = $cekMenu->num_rows();
if($rowcount==0){
redirect('index.php');
}else{
foreach ($cekMenu->result() as $cm)
{
$this->vartambah=$cm->mum_tambah;
$this->varedit=$cm->mum_ubah;
$this->vardelete=$cm->mum_hapus;
$this->varview=$cm->mum_lihat;
}
}
//--------------end check access this form page-------------//
}
public function index($error = NULL) {
$data['title'] = 'Data Penunjang';
$data['main_content'] = 'datapenunjang/v_datapenunjang';
$data['error']=$error;
$this->load->model('m_datapenunjang');
$datapenunjang = $this->m_datapenunjang->index();
$this->load->vars('dp', $datapenunjang);
$this->load->model('m_dokter');
$dokter = $this->m_dokter->index();
$this->load->vars('dk', $dokter);
$this->load->model('m_ruangan');
$ruang = $this->m_ruangan->index();
$this->load->vars('ru', $ruang);
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->index();
$this->load->vars('sp', $spesialis);
$this->load->model('m_dokter');
$dpjp = $this->m_dokter->index();
$this->load->vars('dpjp', $dpjp);
$this->load->model('m_datapenunjang');
$ro = $this->m_datapenunjang->radiologi();
$this->load->vars('rolist', $ro);
$this->load->model('m_datapenunjang');
$lb = $this->m_datapenunjang->lab();
$this->load->vars('lablist', $lb);
$this->load->model('m_datapenunjang');
$lbpa = $this->m_datapenunjang->labpa();
$this->load->vars('labpalist', $lbpa);
$this->load->model('m_datapenunjang');
$lbm = $this->m_datapenunjang->labmikro();
$this->load->vars('labmikrolist', $lbm);
$this->load->view('includes/template', $data);
}
}
?>

View File

@@ -0,0 +1,71 @@
<?php
//-------------ID user login = 19
class Ps_dataresume extends CI_Controller {
//-----------start variables for check action access----------//
public $vartambah = null;
public $varedit = null;
public $vardelete = null;
public $varview = null;
//-----------start variables for check action access----------//
function __construct(){
parent::__construct();
$this->check_isvalidated();
$this->load->helper(array('form', 'date'));
}
private function check_isvalidated(){
if(! $this->session->userdata('validated_rssapintar')){
redirect('index.php/login');
}
//--------------start check access this form page-------------//
$this->db->where('mum_tipeuser_id', $this->session->userdata('s_FK_TipeUser_rssapintar'));
$this->db->where('mum_menu_id', '19');
$cekMenu = $this->db->get('master_user_menu');
$rowcount = $cekMenu->num_rows();
if($rowcount==0){
redirect('index.php');
}else{
foreach ($cekMenu->result() as $cm)
{
$this->vartambah=$cm->mum_tambah;
$this->varedit=$cm->mum_ubah;
$this->vardelete=$cm->mum_hapus;
$this->varview=$cm->mum_lihat;
}
}
//--------------end check access this form page-------------//
}
public function index($error = NULL) {
$data['title'] = 'Data Resume';
$data['main_content'] = 'dataresume/v_dataresume';
$data['error']=$error;
$this->load->model('m_dataresume');
$dataresume = $this->m_dataresume->index();
$this->load->vars('dr', $dataresume);
$this->load->model('m_dokter');
$dokter = $this->m_dokter->index();
$this->load->vars('dk', $dokter);
$this->load->model('m_ruangan');
$ruang = $this->m_ruangan->index();
$this->load->vars('ru', $ruang);
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->index();
$this->load->vars('sp', $spesialis);
$this->load->model('m_dokter');
$dpjp = $this->m_dokter->index();
$this->load->vars('dpjp', $dpjp);
$this->load->view('includes/template', $data);
}
}
?>

View File

@@ -0,0 +1,210 @@
<?php
//-------------ID user login = 7
class Ps_dokter extends CI_Controller {
//-----------start variables for check action access----------//
public $vartambah = null;
public $varedit = null;
public $vardelete = null;
public $varview = null;
//-----------start variables for check action access----------//
function __construct(){
parent::__construct();
$this->check_isvalidated();
$this->load->helper(array('form', 'date'));
}
private function check_isvalidated(){
if(! $this->session->userdata('validated_rssapintar')){
redirect('index.php/login');
}
//--------------start check access this form page-------------//
$this->db->where('mum_tipeuser_id', $this->session->userdata('s_FK_TipeUser_rssapintar'));
$this->db->where('mum_menu_id', '7');
$cekMenu = $this->db->get('master_user_menu');
$rowcount = $cekMenu->num_rows();
if($rowcount==0){
redirect('index.php');
}else{
foreach ($cekMenu->result() as $cm)
{
$this->vartambah=$cm->mum_tambah;
$this->varedit=$cm->mum_ubah;
$this->vardelete=$cm->mum_hapus;
$this->varview=$cm->mum_lihat;
}
}
//--------------end check access this form page-------------//
}
public function index($error = NULL) {
$data['title'] = 'Dokter';
$data['main_content'] = 'master/dokter/v_dokter';
$data['error']=$error;
$this->load->model('m_dokter');
$dokter = $this->m_dokter->index();
$this->load->vars('dk', $dokter);
$this->load->view('includes/template', $data);
}
// fungsi untuk menampilkan form tambah data
public function add() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_dokter');}
//----end validate page tambah---------//
$data['title'] = 'Tambah Dokter';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'master/dokter/form_dokter';
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->status();
$this->load->vars('sp', $spesialis);
$this->load->view('includes/template', $data);
}
//fungsi untuk memproses penambahan dengan memanggil model
public function prosesadd() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_dokter');}
//----end validate page tambah---------//
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('namauser','Nama User','required');
$this->form_validation->set_rules('passworduser','Password User','required');
$this->form_validation->set_rules('repassworduser', 'Retype Password', 'required|matches[passworduser]');
if($this->form_validation->run()==FALSE){
$data['title'] = 'Tambah Dokter';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'master/dokter/form_dokter';
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->status();
$this->load->vars('sp', $spesialis);
$this->load->view('includes/template', $data);
}else{
$this->load->model('m_dokter');
$this->m_dokter->insert();
$this->session->set_flashdata('message', 'Anda berhasil menambahkan Dokter baru');
redirect('index.php/ps_dokter');
}
}
//fungsi untuk menampilkan form edit data dengan data terpilih
public function edit($id) {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_dokter');}
//----end validate page edit---------//
$data['title'] = 'Edit Dokter';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'master/dokter/form_dokter';
$this->load->model('m_dokter');
$dokter = $this->m_dokter->edit($id);
$this->load->vars('dk', $dokter);
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->status();
$this->load->vars('sp', $spesialis);
$this->load->view('includes/template', $data);
}
//funsi untuk memproses update data
public function prosesedit() {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_dokter');}
//----end validate page edit---------//
$id = $this->input->post('id');
$setpass = $this->input->post('passworduser');
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('namauser','Nama User','required');
if(!empty($setpass)){
$this->form_validation->set_rules('passworduser','Password User','required');
$this->form_validation->set_rules('repassworduser', 'Retype Password', 'required|matches[passworduser]');
}
if($this->form_validation->run()==FALSE){
$data['title'] = 'Edit Dokter';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'master/dokter/form_dokter';
$this->load->model('m_dokter');
$dokter = $this->m_dokter->edit($id);
$this->load->vars('dk', $dokter);
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->status();
$this->load->vars('sp', $spesialis);
$this->load->view('includes/template', $data);
}
else{
$this->session->set_flashdata('message', 'Anda berhasil mengedit Dokter');
$this->load->model('m_dokter');
$this->m_dokter->prosesedit();
redirect('index.php/ps_dokter');
}
}
//fungsi untuk menampilkan form view data dengan data terpilih
public function view($id) {
//----start validate page view-------//
if($this->varview==null){redirect('index.php/ps_dokter');}
//----end validate page view---------//
$data['title'] = 'View Dokter';
$data['actionform'] = 'prosesview';
$data['main_content'] = 'master/dokter/form_dokter';
$this->load->model('m_dokter');
$dokter = $this->m_dokter->edit($id);
$this->load->vars('dk', $dokter);
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->status();
$this->load->vars('sp', $spesialis);
$this->load->view('includes/template', $data);
}
//fungsi untuk delete
function delete($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_dokter');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil menghapus Dokter');
$this->load->model('m_dokter');
$this->m_dokter->delete($id);
redirect('index.php/ps_dokter');
}
function disabled($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_dokter');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil disabled Dokter');
$this->load->model('m_dokter');
$this->m_dokter->disabled($id);
redirect('index.php/ps_dokter');
}
function aktif($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_dokter');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil aktifkan Dokter');
$this->load->model('m_dokter');
$this->m_dokter->aktif($id);
redirect('index.php/ps_dokter');
}
}
?>

View File

@@ -0,0 +1,232 @@
<?php
//-------------ID hak akses = 3
class Ps_hakakses extends CI_Controller {
//-----------start variables for check action access----------//
public $vartambah = null;
public $varedit = null;
public $vardelete = null;
public $varview = null;
//-----------start variables for check action access----------//
function __construct(){
parent::__construct();
$this->check_isvalidated();
$this->load->helper(array('form', 'date'));
}
private function check_isvalidated(){
if(! $this->session->userdata('validated_rssapintar')){
redirect('index.php/login');
}
//--------------start check access this form page-------------//
$this->db->where('mum_tipeuser_id', $this->session->userdata('s_FK_TipeUser_rssapintar'));
$this->db->where('mum_menu_id', '3');
$cekMenu = $this->db->get('master_user_menu');
$rowcount = $cekMenu->num_rows();
if($rowcount==0){
redirect('index.php');
}else{
foreach ($cekMenu->result() as $cm)
{
$this->vartambah=$cm->mum_tambah;
$this->varedit=$cm->mum_ubah;
$this->vardelete=$cm->mum_hapus;
$this->varview=$cm->mum_lihat;
}
}
//--------------end check access this form page-------------//
}
public function index($error = NULL) {
$data['title'] = 'Hak Akses';
$data['main_content'] = 'setting/hakakses/v_hakakses';
$data['error']=$error;
$this->load->model('m_tipeuser');
$hakakses = $this->m_tipeuser->index();
$this->load->vars('ha', $hakakses);
$this->load->view('includes/template', $data);
}
// fungsi untuk menampilkan form tambah data
public function add() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_hakakses');}
//----end validate page tambah---------//
$data['title'] = 'Tambah Tipe User';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'setting/hakakses/form_tipeuser';
$this->load->view('includes/template', $data);
}
//fungsi untuk memproses penambahan dengan memanggil model
public function prosesadd() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_hakakses');}
//----end validate page tambah---------//
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('namatipeuser','Nama Tipe User','required');
if($this->form_validation->run()==FALSE){
$data['title'] = 'Tambah Tipe User';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'setting/hakakses/form_tipeuser';
$this->load->view('includes/template', $data);
}else{
$this->load->model('m_tipeuser');
$this->m_tipeuser->insert();
$this->session->set_flashdata('message', 'Anda berhasil menambahkan Tipe User baru');
redirect('index.php/ps_hakakses');
}
}
//fungsi untuk menampilkan form edit data dengan data terpilih
public function edit($id) {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_hakakses');}
//----end validate page edit---------//
$data['title'] = 'Edit Tipe User';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'setting/hakakses/form_tipeuser';
$this->load->model('m_tipeuser');
$hakakses = $this->m_tipeuser->edit($id);
$this->load->vars('ha', $hakakses);
$this->load->view('includes/template', $data);
}
//funsi untuk memproses update data
public function prosesedit() {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_hakakses');}
//----end validate page edit---------//
$id = $this->input->post('id');
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('namatipeuser','Nama Tipe User','required');
if($this->form_validation->run()==FALSE){
$data['title'] = 'Edit Tipe User';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'setting/hakakses/form_tipeuser';
$this->load->model('m_tipeuser');
$hakakses = $this->m_tipeuser->edit($id);
$this->load->vars('ha', $hakakses);
$this->load->view('includes/template', $data);
}
else{
$this->session->set_flashdata('message', 'Anda berhasil mengedit Tipe User');
$this->load->model('m_tipeuser');
$this->m_tipeuser->prosesedit();
redirect('index.php/ps_hakakses');
}
}
//fungsi untuk menampilkan form view data dengan data terpilih
public function view($id) {
//----start validate page view-------//
if($this->varview==null){redirect('index.php/ps_hakakses');}
//----end validate page view---------//
$data['title'] = 'View Tipe User';
$data['actionform'] = 'prosesview';
$data['main_content'] = 'setting/hakakses/form_tipeuser';
$this->load->model('m_tipeuser');
$hakakses = $this->m_tipeuser->view($id);
$this->load->vars('ha', $hakakses);
$this->load->view('includes/template', $data);
}
//fungsi untuk delete
function delete($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_hakakses');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil menghapus Tipe User');
$this->load->model('m_tipeuser');
$this->m_tipeuser->delete($id);
redirect('index.php/ps_hakakses');
}
//--------------------------------------------------HAK AKSES---------------------------------------------------------//
public function edithakakses($id) {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_hakakses');}
//----end validate page edit---------//
$data['title'] = 'Edit Hak Akses Menu';
$data['actionform'] = 'prosesedithakakses';
$data['main_content'] = 'setting/hakakses/form_hakakses';
$data['iduserpost']=$id;
$this->load->model('m_tipeuser');
$tipeuser = $this->m_tipeuser->edit($id);
$this->load->vars('tu', $tipeuser);
$this->load->model('m_menu');
$menu = $this->m_menu->index();
$this->load->vars('mn', $menu);
$this->load->model('m_menu');
$hakakses = $this->m_menu->hakakses($id);
$this->load->vars('um', $hakakses);
$this->load->view('includes/template', $data);
}
//funsi untuk memproses update data karyawan
public function prosesedithakakses() {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_hakakses');}
//----end validate page edit---------//
$id = $this->input->post('id');
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->load->model('m_tipeuser');
$tipeuser = $this->m_tipeuser->edit($id);
$this->load->vars('tu', $tipeuser);
$this->load->model('m_menu');
$menu = $this->m_menu->index();
$this->load->vars('mn', $menu);
$this->load->model('m_menu');
$hakakses = $this->m_menu->hakakses($id);
$this->load->vars('um', $hakakses);
$this->session->set_flashdata('message', 'Anda berhasil mengedit hakakses');
$this->load->model('m_hakakses');
$this->m_hakakses->prosesedithakakses();
redirect('index.php/ps_hakakses');
}
function disabled($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_hakakses');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil disabled Tipe User');
$this->load->model('m_tipeuser');
$this->m_tipeuser->disabled($id);
redirect('index.php/ps_hakakses');
}
function aktif($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_hakakses');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil aktifkan Tipe User');
$this->load->model('m_tipeuser');
$this->m_tipeuser->aktif($id);
redirect('index.php/ps_hakakses');
}
}
?>

View File

@@ -0,0 +1,178 @@
<?php
//-------------ID user login = 13
class Ps_jadwaldokter extends CI_Controller {
//-----------start variables for check action access----------//
public $vartambah = null;
public $varedit = null;
public $vardelete = null;
public $varview = null;
//-----------start variables for check action access----------//
function __construct(){
parent::__construct();
$this->check_isvalidated();
$this->load->helper(array('form', 'date'));
}
private function check_isvalidated(){
if(! $this->session->userdata('validated_rssapintar')){
redirect('index.php/login');
}
//--------------start check access this form page-------------//
$this->db->where('mum_tipeuser_id', $this->session->userdata('s_FK_TipeUser_rssapintar'));
$this->db->where('mum_menu_id', '13');
$cekMenu = $this->db->get('master_user_menu');
$rowcount = $cekMenu->num_rows();
if($rowcount==0){
redirect('index.php');
}else{
foreach ($cekMenu->result() as $cm)
{
$this->vartambah=$cm->mum_tambah;
$this->varedit=$cm->mum_ubah;
$this->vardelete=$cm->mum_hapus;
$this->varview=$cm->mum_lihat;
}
}
//--------------end check access this form page-------------//
}
public function index($error = NULL) {
$data['title'] = 'Jadwal Dokter';
$data['main_content'] = 'jadwaldokter/v_jadwaldokter';
$data['error']=$error;
$this->load->model('m_jadwaldokter');
$jadwaldokter = $this->m_jadwaldokter->index();
$this->load->vars('jd', $jadwaldokter);
$this->load->view('includes/template', $data);
}
// fungsi untuk menampilkan form tambah data
public function add($bulan,$tahun) {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_jadwaldokter');}
//----end validate page tambah---------//
$data['title'] = 'Tambah Jadwal Dokter';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'jadwaldokter/form_jadwaldokter';
$data['databulan'] = $bulan;
$data['datatahun'] = $tahun;
$this->load->model('m_jadwaldokter');
$jadwaldokter = $this->m_jadwaldokter->index();
$this->load->vars('jd', $jadwaldokter);
$this->load->model('m_jadwaldokter');
$spesialis = $this->m_jadwaldokter->spesialisstatus();
$this->load->vars('sp', $spesialis);
$this->load->model('m_jadwaldokter');
$dokter = $this->m_jadwaldokter->dokterstatus();
$this->load->vars('dk', $dokter);
$this->load->view('includes/template', $data);
}
//fungsi untuk memproses penambahan dengan memanggil model
public function prosesadd() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_jadwaldokter');}
//----end validate page tambah---------//
$this->load->helper('form');
$this->load->helper('url');
$this->load->model('m_jadwaldokter');
$this->m_jadwaldokter->prosesedit();
$this->session->set_flashdata('message', 'Anda berhasil menambahkan Jadwal Dokter');
redirect('index.php/ps_jadwaldokter');
}
//fungsi untuk menampilkan form edit data dengan data terpilih
public function edit($bulan,$tahun) {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_jadwaldokter');}
//----end validate page edit---------//
$data['title'] = 'Edit Jadwal Dokter';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'jadwaldokter/form_jadwaldokter';
$data['databulan'] = $bulan;
$data['datatahun'] = $tahun;
$this->load->model('m_jadwaldokter');
$jadwaldokter = $this->m_jadwaldokter->index();
$this->load->vars('jd', $jadwaldokter);
$this->load->model('m_jadwaldokter');
$spesialis = $this->m_jadwaldokter->spesialisstatus();
$this->load->vars('sp', $spesialis);
$this->load->model('m_jadwaldokter');
$dokter = $this->m_jadwaldokter->dokterstatus();
$this->load->vars('dk', $dokter);
$this->load->view('includes/template', $data);
}
//funsi untuk memproses update data
public function prosesedit() {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_jadwaldokter');}
//----end validate page edit---------//
$id = $this->input->post('id');
$this->load->helper('form');
$this->load->helper('url');
$this->session->set_flashdata('message', 'Anda berhasil mengedit Jadwal Dokter');
$this->load->model('m_jadwaldokter');
$this->m_jadwaldokter->prosesedit();
redirect('index.php/ps_jadwaldokter');
}
//fungsi untuk menampilkan form view data dengan data terpilih
public function view($bulan,$tahun) {
//----start validate page view-------//
if($this->varview==null){redirect('index.php/ps_jadwaldokter');}
//----end validate page view---------//
$data['title'] = 'View Jadwal Dokter';
$data['actionform'] = 'prosesview';
$data['main_content'] = 'jadwaldokter/form_jadwaldokter';
$data['databulan'] = $bulan;
$data['datatahun'] = $tahun;
$this->load->model('m_jadwaldokter');
$jadwaldokter = $this->m_jadwaldokter->index();
$this->load->vars('jd', $jadwaldokter);
$this->load->model('m_jadwaldokter');
$spesialis = $this->m_jadwaldokter->spesialisstatus();
$this->load->vars('sp', $spesialis);
$this->load->model('m_jadwaldokter');
$dokter = $this->m_jadwaldokter->dokterstatus();
$this->load->vars('dk', $dokter);
$this->load->view('includes/template', $data);
}
//fungsi untuk delete
function delete($bulan,$tahun) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_jadwaldokter');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil menghapus Jadwal Dokter');
$this->load->model('m_jadwaldokter');
$this->m_jadwaldokter->delete($bulan,$tahun);
redirect('index.php/ps_jadwaldokter');
}
}
?>

View File

@@ -0,0 +1,207 @@
<?php
//-------------ID user login = 16
class Ps_laboratorium extends CI_Controller {
//-----------start variables for check action access----------//
public $vartambah = null;
public $varedit = null;
public $vardelete = null;
public $varview = null;
//-----------start variables for check action access----------//
function __construct(){
parent::__construct();
$this->check_isvalidated();
$this->load->helper(array('form', 'date'));
}
private function check_isvalidated(){
if(! $this->session->userdata('validated_rssapintar')){
redirect('index.php/login');
}
//--------------start check access this form page-------------//
$this->db->where('mum_tipeuser_id', $this->session->userdata('s_FK_TipeUser_rssapintar'));
$this->db->where('mum_menu_id', '16');
$cekMenu = $this->db->get('master_user_menu');
$rowcount = $cekMenu->num_rows();
if($rowcount==0){
redirect('index.php');
}else{
foreach ($cekMenu->result() as $cm)
{
$this->vartambah=$cm->mum_tambah;
$this->varedit=$cm->mum_ubah;
$this->vardelete=$cm->mum_hapus;
$this->varview=$cm->mum_lihat;
}
}
//--------------end check access this form page-------------//
}
public function index($error = NULL) {
$data['title'] = 'Laboratorium';
$data['main_content'] = 'master/laboratorium/v_laboratorium';
$data['error']=$error;
$this->load->model('m_laboratorium');
$laboratorium = $this->m_laboratorium->index();
$this->load->vars('la', $laboratorium);
$this->load->view('includes/template', $data);
}
// fungsi untuk menampilkan form tambah data
public function add() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_laboratorium');}
//----end validate page tambah---------//
$data['title'] = 'Tambah Laboratorium';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'master/laboratorium/form_laboratorium';
$this->load->view('includes/template', $data);
}
//fungsi untuk memproses penambahan dengan memanggil model
public function prosesadd() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_laboratorium');}
//----end validate page tambah---------//
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('nama','Nama Pemeriksaan','required');
if($this->form_validation->run()==FALSE){
$data['title'] = 'Tambah Laboratorium';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'master/laboratorium/form_laboratorium';
$this->load->view('includes/template', $data);
}else{
$this->load->model('m_laboratorium');
$this->m_laboratorium->insert();
$this->session->set_flashdata('message', 'Anda berhasil menambahkan Pemeriksaan Laboratorium baru');
redirect('index.php/ps_laboratorium');
}
}
//fungsi untuk menampilkan form edit data dengan data terpilih
public function edit($id) {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_laboratorium');}
//----end validate page edit---------//
$data['title'] = 'Edit Laboratorium';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'master/laboratorium/form_laboratorium';
$this->load->model('m_laboratorium');
$laboratorium = $this->m_laboratorium->edit($id);
$this->load->vars('la', $laboratorium);
$this->load->model('m_laboratorium');
$laboratorium = $this->m_laboratorium->editdetail($id);
$this->load->vars('lad', $laboratorium);
$this->load->view('includes/template', $data);
}
//funsi untuk memproses update data
public function prosesedit() {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_laboratorium');}
//----end validate page edit---------//
$id = $this->input->post('id');
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('nama','Nama Pemeriksaan','required');
if($this->form_validation->run()==FALSE){
$data['title'] = 'Edit Laboratorium';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'master/laboratorium/form_laboratorium';
$this->load->model('m_laboratorium');
$laboratorium = $this->m_laboratorium->edit($id);
$this->load->vars('la', $laboratorium);
$this->load->model('m_laboratorium');
$laboratorium = $this->m_laboratorium->editdetail($id);
$this->load->vars('lad', $laboratorium);
$this->load->view('includes/template', $data);
}
else{
$this->session->set_flashdata('message', 'Anda berhasil mengedit Pemeriksaan Laboratorium');
$this->load->model('m_laboratorium');
$this->m_laboratorium->prosesedit();
redirect('index.php/ps_laboratorium');
}
}
//fungsi untuk menampilkan form view data dengan data terpilih
public function view($id) {
//----start validate page view-------//
if($this->varview==null){redirect('index.php/ps_laboratorium');}
//----end validate page view---------//
$data['title'] = 'View Laboratorium';
$data['actionform'] = 'prosesview';
$data['main_content'] = 'master/laboratorium/form_laboratorium';
$this->load->model('m_laboratorium');
$laboratorium = $this->m_laboratorium->edit($id);
$this->load->vars('la', $laboratorium);
$this->load->model('m_laboratorium');
$laboratorium = $this->m_laboratorium->editdetail($id);
$this->load->vars('lad', $laboratorium);
$this->load->view('includes/template', $data);
}
//fungsi untuk delete
function delete($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_laboratorium');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil menghapus Pemeriksaan Laboratorium');
$this->load->model('m_laboratorium');
$this->m_laboratorium->delete($id);
redirect('index.php/ps_laboratorium');
}
function deletedetail($id,$mlid) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_laboratorium');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil menghapus Detail Pemeriksaan Laboratorium');
$this->load->model('m_laboratorium');
$this->m_laboratorium->deletedetail($id);
redirect('index.php/ps_laboratorium/edit/'.$mlid);
}
function disabled($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_laboratorium');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil disabled Pemeriksaan Laboratorium');
$this->load->model('m_laboratorium');
$this->m_laboratorium->disabled($id);
redirect('index.php/ps_laboratorium');
}
function aktif($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_laboratorium');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil aktifkan Pemeriksaan Laboratorium');
$this->load->model('m_laboratorium');
$this->m_laboratorium->aktif($id);
redirect('index.php/ps_laboratorium');
}
}
?>

View File

@@ -0,0 +1,190 @@
<?php
//-------------ID user login = 6
class Ps_pasien extends CI_Controller {
//-----------start variables for check action access----------//
public $vartambah = null;
public $varedit = null;
public $vardelete = null;
public $varview = null;
//-----------start variables for check action access----------//
function __construct(){
parent::__construct();
$this->check_isvalidated();
$this->load->helper(array('form', 'date'));
}
private function check_isvalidated(){
if(! $this->session->userdata('validated_rssapintar')){
redirect('index.php/login');
}
//--------------start check access this form page-------------//
$this->db->where('mum_tipeuser_id', $this->session->userdata('s_FK_TipeUser_rssapintar'));
$this->db->where('mum_menu_id', '6');
$cekMenu = $this->db->get('master_user_menu');
$rowcount = $cekMenu->num_rows();
if($rowcount==0){
redirect('index.php');
}else{
foreach ($cekMenu->result() as $cm)
{
$this->vartambah=$cm->mum_tambah;
$this->varedit=$cm->mum_ubah;
$this->vardelete=$cm->mum_hapus;
$this->varview=$cm->mum_lihat;
}
}
//--------------end check access this form page-------------//
}
public function index($error = NULL) {
$data['title'] = 'Pasien';
$data['main_content'] = 'master/pasien/v_pasien';
$data['error']=$error;
$this->load->model('m_pasien');
$pasien = $this->m_pasien->index();
$this->load->vars('ps', $pasien);
$this->load->view('includes/template', $data);
}
// fungsi untuk menampilkan form tambah data
public function add() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_pasien');}
//----end validate page tambah---------//
$data['title'] = 'Tambah Pasien';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'master/pasien/form_pasien';
$this->load->view('includes/template', $data);
}
//fungsi untuk memproses penambahan dengan memanggil model
public function prosesadd() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_pasien');}
//----end validate page tambah---------//
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('namauser','Nama User','required');
$this->form_validation->set_rules('passworduser','Password User','required');
$this->form_validation->set_rules('repassworduser', 'Retype Password', 'required|matches[passworduser]');
if($this->form_validation->run()==FALSE){
$data['title'] = 'Tambah Pasien';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'master/pasien/form_pasien';
$this->load->view('includes/template', $data);
}else{
$this->load->model('m_pasien');
$this->m_pasien->insert();
$this->session->set_flashdata('message', 'Anda berhasil menambahkan pasien baru');
redirect('index.php/ps_pasien');
}
}
//fungsi untuk menampilkan form edit data dengan data terpilih
public function edit($id) {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_pasien');}
//----end validate page edit---------//
$data['title'] = 'Edit Pasien';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'master/pasien/form_pasien';
$this->load->model('m_pasien');
$pasien = $this->m_pasien->edit($id);
$this->load->vars('ps', $pasien);
$this->load->view('includes/template', $data);
}
//funsi untuk memproses update data
public function prosesedit() {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_pasien');}
//----end validate page edit---------//
$id = $this->input->post('id');
$setpass = $this->input->post('passworduser');
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('namauser','Nama User','required');
if(!empty($setpass)){
$this->form_validation->set_rules('passworduser','Password User','required');
$this->form_validation->set_rules('repassworduser', 'Retype Password', 'required|matches[passworduser]');
}
if($this->form_validation->run()==FALSE){
$data['title'] = 'Edit Pasien';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'master/pasien/form_pasien';
$this->load->model('m_pasien');
$pasien = $this->m_pasien->edit($id);
$this->load->vars('ps', $pasien);
$this->load->view('includes/template', $data);
}
else{
$this->session->set_flashdata('message', 'Anda berhasil mengedit Pasien');
$this->load->model('m_pasien');
$this->m_pasien->prosesedit();
redirect('index.php/ps_pasien');
}
}
//fungsi untuk menampilkan form view data dengan data terpilih
public function view($id) {
//----start validate page view-------//
if($this->varview==null){redirect('index.php/ps_pasien');}
//----end validate page view---------//
$data['title'] = 'View Pasien';
$data['actionform'] = 'prosesview';
$data['main_content'] = 'master/pasien/form_pasien';
$this->load->model('m_pasien');
$pasien = $this->m_pasien->edit($id);
$this->load->vars('ps', $pasien);
$this->load->view('includes/template', $data);
}
//fungsi untuk delete
function delete($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_pasien');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil menghapus Pasien');
$this->load->model('m_pasien');
$this->m_pasien->delete($id);
redirect('index.php/ps_pasien');
}
function disabled($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_pasien');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil disabled Pasien');
$this->load->model('m_pasien');
$this->m_pasien->disabled($id);
redirect('index.php/ps_pasien');
}
function aktif($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_pasien');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil aktifkan Pasien');
$this->load->model('m_pasien');
$this->m_pasien->aktif($id);
redirect('index.php/ps_pasien');
}
}
?>

View File

@@ -0,0 +1,404 @@
<?php
//-------------ID user login = 11
class Ps_pemeriksaan extends CI_Controller {
//-----------start variables for check action access----------//
public $vartambah = null;
public $varedit = null;
public $vardelete = null;
public $varview = null;
//-----------start variables for check action access----------//
function __construct(){
parent::__construct();
$this->check_isvalidated();
$this->load->helper(array('form', 'date', 'url'));
}
private function check_isvalidated(){
if(! $this->session->userdata('validated_rssapintar')){
redirect('index.php/login');
}
//--------------start check access this form page-------------//
$this->db->where('mum_tipeuser_id', $this->session->userdata('s_FK_TipeUser_rssapintar'));
$this->db->where('mum_menu_id', '11');
$cekMenu = $this->db->get('master_user_menu');
$rowcount = $cekMenu->num_rows();
if($rowcount==0){
redirect('index.php');
}else{
foreach ($cekMenu->result() as $cm)
{
$this->vartambah=$cm->mum_tambah;
$this->varedit=$cm->mum_ubah;
$this->vardelete=$cm->mum_hapus;
$this->varview=$cm->mum_lihat;
}
}
//--------------end check access this form page-------------//
}
public function index($error = NULL) {
$data['title'] = 'Pemeriksaan Penunjang';
$data['main_content'] = 'pemeriksaan/v_pemeriksaan';
$data['error']=$error;
if(! $this->input->post('reservation')){
$date1 = date("m/d/Y");
$date2 = date("m/d/Y");
}else{
$datemya = explode("-",$this->input->post('reservation'));
$date1 = $datemya[0];
$date2 = $datemya[1];
}
$data['daterange'] = $date1." - ".$date2;
$data['spnya'] = $this->input->post('spesialis');
$this->load->model('m_pemeriksaan');
$pemeriksaan = $this->m_pemeriksaan->search();
$this->load->vars('pm', $pemeriksaan);
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->status();
$this->load->vars('sp', $spesialis);
$this->load->view('includes/template', $data);
}
// fungsi untuk menampilkan form tambah data
public function addpermin($ket) {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_pemeriksaan');}
//----end validate page tambah---------//
$data['ket'] = "1";
$data['pelayanan'] = $ket;
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'pemeriksaan/form_permin_pemeriksaan';
$this->load->model('m_pasien');
$pasien = $this->m_pasien->statusaktif();
$this->load->vars('ps', $pasien);
$this->load->model('m_dokter');
$dokter = $this->m_dokter->statusaktif();
$this->load->vars('dk', $dokter);
$this->load->model('m_ruangan');
$ruang = $this->m_ruangan->pelayanan($ket);
$this->load->vars('ru', $ruang);
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->status();
$this->load->vars('sp', $spesialis);
$this->load->view('includes/template', $data);
}
//fungsi untuk memproses penambahan dengan memanggil model
public function prosesadd() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_pemeriksaan');}
//----end validate page tambah---------//
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('pasien','Nama Pasien','required');
if($this->form_validation->run()==FALSE){
$data['ket'] = "1";
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'pemeriksaan/form_permin_pemeriksaan';
$this->load->model('m_pasien');
$pasien = $this->m_pasien->statusaktif();
$this->load->vars('ps', $pasien);
$this->load->model('m_dokter');
$dokter = $this->m_dokter->statusaktif();
$this->load->vars('dk', $dokter);
$this->load->model('m_ruangan');
$ruang = $this->m_ruangan->status();
$this->load->vars('ru', $ruang);
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->status();
$this->load->vars('sp', $spesialis);
$this->load->view('includes/template', $data);
}else{
$this->load->model('m_pemeriksaan');
$this->m_pemeriksaan->insert();
$this->session->set_flashdata('message', 'Anda berhasil menambahkan Permintaan Pem. Penunjang baru');
redirect('index.php/ps_pemeriksaan');
}
}
//fungsi untuk menampilkan form edit data dengan data terpilih
public function edit($id,$ket) {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_pemeriksaan');}
//----end validate page edit---------//
$data['ket'] = $ket;
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'pemeriksaan/form_permin_pemeriksaan';
$this->load->model('m_pemeriksaan');
$pemeriksaan = $this->m_pemeriksaan->edit($id);
$this->load->vars('pm', $pemeriksaan);
$this->load->model('m_pasien');
$pasien = $this->m_pasien->statusaktif();
$this->load->vars('ps', $pasien);
$this->load->model('m_dokter');
$dokter = $this->m_dokter->statusaktif();
$this->load->vars('dk', $dokter);
$this->load->model('m_ruangan');
$ruang = $this->m_ruangan->status();
$this->load->vars('ru', $ruang);
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->status();
$this->load->vars('sp', $spesialis);
$this->load->model('m_pemeriksaan');
$ro = $this->m_pemeriksaan->radiologi($id);
$this->load->vars('rolist', $ro);
$this->load->model('m_pemeriksaan');
$la = $this->m_pemeriksaan->lab($id);
$this->load->vars('lalist', $la);
$this->load->model('m_pemeriksaan');
$lp = $this->m_pemeriksaan->labpa($id);
$this->load->vars('lapalist', $lp);
$this->load->model('m_pemeriksaan');
$lm = $this->m_pemeriksaan->labmikro($id);
$this->load->vars('lamklist', $lm);
$this->load->view('includes/template', $data);
}
//funsi untuk memproses update data
public function prosesedit() {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_pemeriksaan');}
//----end validate page edit---------//
$id = $this->input->post('id');
$ket= $this->input->post('keter');
$this->load->helper('form');
$this->load->helper('url');
if($ket=="2"){
$this->session->set_flashdata('message', 'Anda berhasil mengedit permintaan Pememeriksaan Penunjang');
$this->load->model('m_pemeriksaan');
$this->m_pemeriksaan->proseseditpermin();
redirect('index.php/ps_pemeriksaan');
}else{
$namafile = $this->input->post('setnorm')."_".date('ymdhis');
if($this->session->userdata('s_petugas_rssapintar')==1){
$config['upload_path'] = './document/radiologi';
$config['allowed_types'] = 'jpg|pdf';
$config['overwrite'] = TRUE;
$config['max_size'] = 2000;
$config['file_name'] = $namafile;
$this->load->library('upload', $config);
if ( !$this->upload->do_upload('fileradiologi')){
$this->session->set_flashdata('messagedanger', $this->upload->display_errors());
redirect('index.php/ps_pemeriksaan/edit/'.$id.'/'.$ket);
}else{
if($ket=="4"){
$this->session->set_flashdata('message', 'Anda berhasil mengisi Pemeriksaan Penunjang Radiologi');
}elseif($ket=="3"){
$this->session->set_flashdata('message', 'Anda berhasil mengedit Pemeriksaan Penunjang Radiologi');
}
$filenya = explode("/",$_FILES['fileradiologi']['type']);
if($filenya[1]=="jpeg"){
$filenya[1]="jpg";
}
$this->load->model('m_pemeriksaan');
$this->m_pemeriksaan->proseseditupload($namafile.".".$filenya[1]);
redirect('index.php/ps_pemeriksaan/edit/'.$id.'/'.$ket);
}
}elseif($this->session->userdata('s_petugas_rssapintar')==2){
$config['upload_path'] = './document/lab';
$config['allowed_types'] = 'jpg|pdf';
$config['overwrite'] = TRUE;
$config['max_size'] = 2000;
$config['file_name'] = $namafile;
$this->load->library('upload', $config);
if ( !$this->upload->do_upload('filelab')){
$this->session->set_flashdata('messagedanger', $this->upload->display_errors());
redirect('index.php/ps_pemeriksaan/edit/'.$id.'/'.$ket);
}else{
if($ket=="4"){
$this->session->set_flashdata('message', 'Anda berhasil mengisi Pemeriksaan Penunjang Lab');
}elseif($ket=="3"){
$this->session->set_flashdata('message', 'Anda berhasil mengedit Pemeriksaan Penunjang Lab');
}
$filenya = explode("/",$_FILES['filelab']['type']);
if($filenya[1]=="jpeg"){
$filenya[1]="jpg";
}
$this->load->model('m_pemeriksaan');
$this->m_pemeriksaan->proseseditupload($namafile.".".$filenya[1]);
redirect('index.php/ps_pemeriksaan/edit/'.$id.'/'.$ket);
}
}elseif($this->session->userdata('s_petugas_rssapintar')==3){
$config['upload_path'] = './document/labpa';
$config['allowed_types'] = 'jpg|pdf';
$config['overwrite'] = TRUE;
$config['max_size'] = 2000;
$config['file_name'] = $namafile;
$this->load->library('upload', $config);
if ( !$this->upload->do_upload('filelabpa')){
$this->session->set_flashdata('messagedanger', $this->upload->display_errors());
redirect('index.php/ps_pemeriksaan/edit/'.$id.'/'.$ket);
}else{
if($ket=="4"){
$this->session->set_flashdata('message', 'Anda berhasil mengisi Pemeriksaan Penunjang Lab PA');
}elseif($ket=="3"){
$this->session->set_flashdata('message', 'Anda berhasil mengedit Pemeriksaan Penunjang Lab PA');
}
$filenya = explode("/",$_FILES['filelabpa']['type']);
if($filenya[1]=="jpeg"){
$filenya[1]="jpg";
}
$this->load->model('m_pemeriksaan');
$this->m_pemeriksaan->proseseditupload($namafile.".".$filenya[1]);
redirect('index.php/ps_pemeriksaan/edit/'.$id.'/'.$ket);
}
}elseif($this->session->userdata('s_petugas_rssapintar')==4){
$config['upload_path'] = './document/labmikro';
$config['allowed_types'] = 'jpg|pdf';
$config['overwrite'] = TRUE;
$config['max_size'] = 2000;
$config['file_name'] = $namafile;
$this->load->library('upload', $config);
if ( !$this->upload->do_upload('filelabmikro')){
$this->session->set_flashdata('messagedanger', $this->upload->display_errors());
redirect('index.php/ps_pemeriksaan/edit/'.$id.'/'.$ket);
}else{
if($ket=="4"){
$this->session->set_flashdata('message', 'Anda berhasil mengisi Pemeriksaan Penunjang Lab Mikro');
}elseif($ket=="3"){
$this->session->set_flashdata('message', 'Anda berhasil mengedit Pemeriksaan Penunjang Lab Mikro');
}
$filenya = explode("/",$_FILES['filelabmikro']['type']);
if($filenya[1]=="jpeg"){
$filenya[1]="jpg";
}
$this->load->model('m_pemeriksaan');
$this->m_pemeriksaan->proseseditupload($namafile.".".$filenya[1]);
redirect('index.php/ps_pemeriksaan/edit/'.$id.'/'.$ket);
}
}
}
}
function deletefile($idpfp,$idpp,$ket) {
//----start validate page delete-------//
//if($this->vardelete==null){redirect('index.php/ps_pemeriksaan');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil menghapus file penunjang');
$this->load->model('m_pemeriksaan');
$this->m_pemeriksaan->deletefile($idpfp);
redirect('index.php/ps_pemeriksaan/edit/'.$idpp.'/'.$ket);
}
//fungsi untuk menampilkan form view data dengan data terpilih
public function view($id) {
//----start validate page view-------//
if($this->varview==null){redirect('index.php/ps_pemeriksaan');}
//----end validate page view---------//
$data['ket'] = "5";
$data['actionform'] = 'prosesview';
$data['main_content'] = 'pemeriksaan/form_permin_pemeriksaan';
$this->load->model('m_pemeriksaan');
$pemeriksaan = $this->m_pemeriksaan->edit($id);
$this->load->vars('pm', $pemeriksaan);
$this->load->model('m_pasien');
$pasien = $this->m_pasien->statusaktif();
$this->load->vars('ps', $pasien);
$this->load->model('m_dokter');
$dokter = $this->m_dokter->statusaktif();
$this->load->vars('dk', $dokter);
$this->load->model('m_ruangan');
$ruang = $this->m_ruangan->status();
$this->load->vars('ru', $ruang);
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->status();
$this->load->vars('sp', $spesialis);
$this->load->model('m_pemeriksaan');
$ro = $this->m_pemeriksaan->radiologi($id);
$this->load->vars('rolist', $ro);
$this->load->model('m_pemeriksaan');
$la = $this->m_pemeriksaan->lab($id);
$this->load->vars('lalist', $la);
$this->load->model('m_pemeriksaan');
$lp = $this->m_pemeriksaan->labpa($id);
$this->load->vars('lapalist', $lp);
$this->load->model('m_pemeriksaan');
$lm = $this->m_pemeriksaan->labmikro($id);
$this->load->vars('lamklist', $lm);
$this->load->view('includes/template', $data);
}
function deletedokter($id,$ket) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_resume');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil menghapus Resume Dokter');
$this->load->model('m_resume');
$this->m_resume->deletedokter($id);
redirect('index.php/ps_resume/edit/'.$id.'/'.$ket);
}
//fungsi untuk delete
function delete($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_resume');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil menghapus Resume');
$this->load->model('m_resume');
$this->m_resume->delete($id);
redirect('index.php/ps_resume');
}
function datapasien(){
$id = $this->input->post('pasien');
$query = $this->db->query("select * from master_user
where mu_id='$id'");
foreach ($query->result() as $row){
$data[] = $row;
}
echo json_encode($data);
}
}
?>

View File

@@ -0,0 +1,190 @@
<?php
//-------------ID user login = 15
class Ps_petugas extends CI_Controller {
//-----------start variables for check action access----------//
public $vartambah = null;
public $varedit = null;
public $vardelete = null;
public $varview = null;
//-----------start variables for check action access----------//
function __construct(){
parent::__construct();
$this->check_isvalidated();
$this->load->helper(array('form', 'date'));
}
private function check_isvalidated(){
if(! $this->session->userdata('validated_rssapintar')){
redirect('index.php/login');
}
//--------------start check access this form page-------------//
$this->db->where('mum_tipeuser_id', $this->session->userdata('s_FK_TipeUser_rssapintar'));
$this->db->where('mum_menu_id', '15');
$cekMenu = $this->db->get('master_user_menu');
$rowcount = $cekMenu->num_rows();
if($rowcount==0){
redirect('index.php');
}else{
foreach ($cekMenu->result() as $cm)
{
$this->vartambah=$cm->mum_tambah;
$this->varedit=$cm->mum_ubah;
$this->vardelete=$cm->mum_hapus;
$this->varview=$cm->mum_lihat;
}
}
//--------------end check access this form page-------------//
}
public function index($error = NULL) {
$data['title'] = 'Petugas';
$data['main_content'] = 'master/petugas/v_petugas';
$data['error']=$error;
$this->load->model('m_petugas');
$petugas = $this->m_petugas->index();
$this->load->vars('pt', $petugas);
$this->load->view('includes/template', $data);
}
// fungsi untuk menampilkan form tambah data
public function add() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_petugas');}
//----end validate page tambah---------//
$data['title'] = 'Tambah Petugas';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'master/petugas/form_petugas';
$this->load->view('includes/template', $data);
}
//fungsi untuk memproses penambahan dengan memanggil model
public function prosesadd() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_petugas');}
//----end validate page tambah---------//
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('namauser','Nama User','required');
$this->form_validation->set_rules('passworduser','Password User','required');
$this->form_validation->set_rules('repassworduser', 'Retype Password', 'required|matches[passworduser]');
if($this->form_validation->run()==FALSE){
$data['title'] = 'Tambah Petugas';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'master/petugas/form_petugas';
$this->load->view('includes/template', $data);
}else{
$this->load->model('m_petugas');
$this->m_petugas->insert();
$this->session->set_flashdata('message', 'Anda berhasil menambahkan Petugas baru');
redirect('index.php/ps_petugas');
}
}
//fungsi untuk menampilkan form edit data dengan data terpilih
public function edit($id) {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_petugas');}
//----end validate page edit---------//
$data['title'] = 'Edit Petugas';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'master/petugas/form_petugas';
$this->load->model('m_petugas');
$petugas = $this->m_petugas->edit($id);
$this->load->vars('pt', $petugas);
$this->load->view('includes/template', $data);
}
//funsi untuk memproses update data
public function prosesedit() {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_petugas');}
//----end validate page edit---------//
$id = $this->input->post('id');
$setpass = $this->input->post('passworduser');
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('namauser','Nama User','required');
if(!empty($setpass)){
$this->form_validation->set_rules('passworduser','Password User','required');
$this->form_validation->set_rules('repassworduser', 'Retype Password', 'required|matches[passworduser]');
}
if($this->form_validation->run()==FALSE){
$data['title'] = 'Edit Petugas';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'master/petugas/form_petugas';
$this->load->model('m_petugas');
$petugas = $this->m_petugas->edit($id);
$this->load->vars('pt', $petugas);
$this->load->view('includes/template', $data);
}
else{
$this->session->set_flashdata('message', 'Anda berhasil mengedit Petugas');
$this->load->model('m_petugas');
$this->m_petugas->prosesedit();
redirect('index.php/ps_petugas');
}
}
//fungsi untuk menampilkan form view data dengan data terpilih
public function view($id) {
//----start validate page view-------//
if($this->varview==null){redirect('index.php/ps_petugas');}
//----end validate page view---------//
$data['title'] = 'View Petugas';
$data['actionform'] = 'prosesview';
$data['main_content'] = 'master/petugas/form_petugas';
$this->load->model('m_petugas');
$petugas = $this->m_petugas->edit($id);
$this->load->vars('pt', $petugas);
$this->load->view('includes/template', $data);
}
//fungsi untuk delete
function delete($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_petugas');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil menghapus Petugas');
$this->load->model('m_petugas');
$this->m_petugas->delete($id);
redirect('index.php/ps_petugas');
}
function disabled($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_petugas');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil disabled Petugas');
$this->load->model('m_petugas');
$this->m_petugas->disabled($id);
redirect('index.php/ps_petugas');
}
function aktif($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_petugas');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil aktifkan Petugas');
$this->load->model('m_petugas');
$this->m_petugas->aktif($id);
redirect('index.php/ps_petugas');
}
}
?>

View File

@@ -0,0 +1,190 @@
<?php
//-------------ID user login = 14
class Ps_profile extends CI_Controller {
//-----------start variables for check action access----------//
public $vartambah = null;
public $varedit = null;
public $vardelete = null;
public $varview = null;
//-----------start variables for check action access----------//
function __construct(){
parent::__construct();
$this->check_isvalidated();
$this->load->helper(array('form', 'date'));
}
private function check_isvalidated(){
if(! $this->session->userdata('validated_rssapintar')){
redirect('index.php/login');
}
//--------------start check access this form page-------------//
$this->db->where('mum_tipeuser_id', $this->session->userdata('s_FK_TipeUser_rssapintar'));
$this->db->where('mum_menu_id', '14');
$cekMenu = $this->db->get('master_user_menu');
$rowcount = $cekMenu->num_rows();
if($rowcount==0){
redirect('index.php');
}else{
foreach ($cekMenu->result() as $cm)
{
$this->vartambah=$cm->mum_tambah;
$this->varedit=$cm->mum_ubah;
$this->vardelete=$cm->mum_hapus;
$this->varview=$cm->mum_lihat;
}
}
//--------------end check access this form page-------------//
}
public function index($error = NULL) {
$data['title'] = 'Profile';
$data['main_content'] = 'profile/v_profile';
$data['error']=$error;
$this->load->model('m_profile');
$profile = $this->m_profile->index();
$this->load->vars('pf', $profile);
$this->load->view('includes/template', $data);
}
// fungsi untuk menampilkan form tambah data
public function add() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_pasien');}
//----end validate page tambah---------//
$data['title'] = 'Tambah Pasien';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'master/pasien/form_pasien';
$this->load->view('includes/template', $data);
}
//fungsi untuk memproses penambahan dengan memanggil model
public function prosesadd() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_pasien');}
//----end validate page tambah---------//
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('namauser','Nama User','required');
$this->form_validation->set_rules('passworduser','Password User','required');
$this->form_validation->set_rules('repassworduser', 'Retype Password', 'required|matches[passworduser]');
if($this->form_validation->run()==FALSE){
$data['title'] = 'Tambah Pasien';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'master/pasien/form_pasien';
$this->load->view('includes/template', $data);
}else{
$this->load->model('m_pasien');
$this->m_pasien->insert();
$this->session->set_flashdata('message', 'Anda berhasil menambahkan pasien baru');
redirect('index.php/ps_pasien');
}
}
//fungsi untuk menampilkan form edit data dengan data terpilih
public function edit($id) {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_pasien');}
//----end validate page edit---------//
$data['title'] = 'Edit Pasien';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'master/pasien/form_pasien';
$this->load->model('m_pasien');
$pasien = $this->m_pasien->edit($id);
$this->load->vars('ps', $pasien);
$this->load->view('includes/template', $data);
}
//funsi untuk memproses update data
public function prosesedit() {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_pasien');}
//----end validate page edit---------//
$id = $this->input->post('id');
$setpass = $this->input->post('passworduser');
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('namauser','Nama User','required');
if(!empty($setpass)){
$this->form_validation->set_rules('passworduser','Password User','required');
$this->form_validation->set_rules('repassworduser', 'Retype Password', 'required|matches[passworduser]');
}
if($this->form_validation->run()==FALSE){
$data['title'] = 'Edit Pasien';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'master/pasien/form_pasien';
$this->load->model('m_pasien');
$pasien = $this->m_pasien->edit($id);
$this->load->vars('ps', $pasien);
$this->load->view('includes/template', $data);
}
else{
$this->session->set_flashdata('message', 'Anda berhasil mengedit Pasien');
$this->load->model('m_pasien');
$this->m_pasien->prosesedit();
redirect('index.php/ps_pasien');
}
}
//fungsi untuk menampilkan form view data dengan data terpilih
public function view($id) {
//----start validate page view-------//
if($this->varview==null){redirect('index.php/ps_pasien');}
//----end validate page view---------//
$data['title'] = 'View Pasien';
$data['actionform'] = 'prosesview';
$data['main_content'] = 'master/pasien/form_pasien';
$this->load->model('m_pasien');
$pasien = $this->m_pasien->edit($id);
$this->load->vars('ps', $pasien);
$this->load->view('includes/template', $data);
}
//fungsi untuk delete
function delete($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_pasien');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil menghapus Pasien');
$this->load->model('m_pasien');
$this->m_pasien->delete($id);
redirect('index.php/ps_pasien');
}
function disabled($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_pasien');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil disabled Pasien');
$this->load->model('m_pasien');
$this->m_pasien->disabled($id);
redirect('index.php/ps_pasien');
}
function aktif($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_pasien');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil aktifkan Pasien');
$this->load->model('m_pasien');
$this->m_pasien->aktif($id);
redirect('index.php/ps_pasien');
}
}
?>

View File

@@ -0,0 +1,207 @@
<?php
//-------------ID user login = 17
class Ps_radiologi extends CI_Controller {
//-----------start variables for check action access----------//
public $vartambah = null;
public $varedit = null;
public $vardelete = null;
public $varview = null;
//-----------start variables for check action access----------//
function __construct(){
parent::__construct();
$this->check_isvalidated();
$this->load->helper(array('form', 'date'));
}
private function check_isvalidated(){
if(! $this->session->userdata('validated_rssapintar')){
redirect('index.php/login');
}
//--------------start check access this form page-------------//
$this->db->where('mum_tipeuser_id', $this->session->userdata('s_FK_TipeUser_rssapintar'));
$this->db->where('mum_menu_id', '17');
$cekMenu = $this->db->get('master_user_menu');
$rowcount = $cekMenu->num_rows();
if($rowcount==0){
redirect('index.php');
}else{
foreach ($cekMenu->result() as $cm)
{
$this->vartambah=$cm->mum_tambah;
$this->varedit=$cm->mum_ubah;
$this->vardelete=$cm->mum_hapus;
$this->varview=$cm->mum_lihat;
}
}
//--------------end check access this form page-------------//
}
public function index($error = NULL) {
$data['title'] = 'Radiologi';
$data['main_content'] = 'master/radiologi/v_radiologi';
$data['error']=$error;
$this->load->model('m_radiologi');
$radiologi = $this->m_radiologi->index();
$this->load->vars('ro', $radiologi);
$this->load->view('includes/template', $data);
}
// fungsi untuk menampilkan form tambah data
public function add() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_radiologi');}
//----end validate page tambah---------//
$data['title'] = 'Tambah Radiologi';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'master/radiologi/form_radiologi';
$this->load->view('includes/template', $data);
}
//fungsi untuk memproses penambahan dengan memanggil model
public function prosesadd() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_radiologi');}
//----end validate page tambah---------//
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('nama','Nama Pemeriksaan','required');
if($this->form_validation->run()==FALSE){
$data['title'] = 'Tambah Radiologi';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'master/radiologi/form_radiologi';
$this->load->view('includes/template', $data);
}else{
$this->load->model('m_radiologi');
$this->m_radiologi->insert();
$this->session->set_flashdata('message', 'Anda berhasil menambahkan Pemeriksaan Radiologi baru');
redirect('index.php/ps_radiologi');
}
}
//fungsi untuk menampilkan form edit data dengan data terpilih
public function edit($id) {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_radiologi');}
//----end validate page edit---------//
$data['title'] = 'Edit Radiologi';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'master/radiologi/form_radiologi';
$this->load->model('m_radiologi');
$radiologi = $this->m_radiologi->edit($id);
$this->load->vars('ro', $radiologi);
$this->load->model('m_radiologi');
$radiologi = $this->m_radiologi->editdetail($id);
$this->load->vars('rod', $radiologi);
$this->load->view('includes/template', $data);
}
//funsi untuk memproses update data
public function prosesedit() {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_radiologi');}
//----end validate page edit---------//
$id = $this->input->post('id');
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('nama','Nama Pemeriksaan','required');
if($this->form_validation->run()==FALSE){
$data['title'] = 'Edit Radiologi';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'master/radiologi/form_radiologi';
$this->load->model('m_radiologi');
$radiologi = $this->m_radiologi->edit($id);
$this->load->vars('ro', $radiologi);
$this->load->model('m_radiologi');
$radiologi = $this->m_radiologi->editdetail($id);
$this->load->vars('rod', $radiologi);
$this->load->view('includes/template', $data);
}
else{
$this->session->set_flashdata('message', 'Anda berhasil mengedit Pemeriksaan Radiologi');
$this->load->model('m_radiologi');
$this->m_radiologi->prosesedit();
redirect('index.php/ps_radiologi');
}
}
//fungsi untuk menampilkan form view data dengan data terpilih
public function view($id) {
//----start validate page view-------//
if($this->varview==null){redirect('index.php/ps_radiologi');}
//----end validate page view---------//
$data['title'] = 'View Radiologi';
$data['actionform'] = 'prosesview';
$data['main_content'] = 'master/radiologi/form_radiologi';
$this->load->model('m_radiologi');
$radiologi = $this->m_radiologi->edit($id);
$this->load->vars('ro', $radiologi);
$this->load->model('m_radiologi');
$radiologi = $this->m_radiologi->editdetail($id);
$this->load->vars('rod', $radiologi);
$this->load->view('includes/template', $data);
}
//fungsi untuk delete
function delete($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_radiologi');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil menghapus Pemeriksaan Radiologi');
$this->load->model('m_radiologi');
$this->m_radiologi->delete($id);
redirect('index.php/ps_radiologi');
}
function deletedetail($id,$mroid) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_radiologi');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil menghapus Detail Pemeriksaan Radiologi');
$this->load->model('m_radiologi');
$this->m_radiologi->deletedetail($id);
redirect('index.php/ps_radiologi/edit/'.$mroid);
}
function disabled($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_radiologi');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil disabled Pemeriksaan Radiologi');
$this->load->model('m_radiologi');
$this->m_radiologi->disabled($id);
redirect('index.php/ps_radiologi');
}
function aktif($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_radiologi');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil aktifkan Pemeriksaan Radiologi');
$this->load->model('m_radiologi');
$this->m_radiologi->aktif($id);
redirect('index.php/ps_radiologi');
}
}
?>

View File

@@ -0,0 +1,295 @@
<?php
//-------------ID user login = 10
class Ps_resume extends CI_Controller {
//-----------start variables for check action access----------//
public $vartambah = null;
public $varedit = null;
public $vardelete = null;
public $varview = null;
//-----------start variables for check action access----------//
function __construct(){
parent::__construct();
$this->check_isvalidated();
$this->load->helper(array('form', 'date'));
}
private function check_isvalidated(){
if(! $this->session->userdata('validated_rssapintar')){
redirect('index.php/login');
}
//--------------start check access this form page-------------//
$this->db->where('mum_tipeuser_id', $this->session->userdata('s_FK_TipeUser_rssapintar'));
$this->db->where('mum_menu_id', '10');
$cekMenu = $this->db->get('master_user_menu');
$rowcount = $cekMenu->num_rows();
if($rowcount==0){
redirect('index.php');
}else{
foreach ($cekMenu->result() as $cm)
{
$this->vartambah=$cm->mum_tambah;
$this->varedit=$cm->mum_ubah;
$this->vardelete=$cm->mum_hapus;
$this->varview=$cm->mum_lihat;
}
}
//--------------end check access this form page-------------//
}
public function index($error = NULL) {
$data['title'] = 'Resume';
$data['main_content'] = 'resume/v_resume';
$data['error']=$error;
if(! $this->input->post('reservation')){
$date1 = date("m/d/Y");
$date2 = date("m/d/Y");
}else{
$datemya = explode("-",$this->input->post('reservation'));
$date1 = $datemya[0];
$date2 = $datemya[1];
}
$data['daterange'] = $date1." - ".$date2;
$data['spnya'] = $this->input->post('spesialis');
$this->load->model('m_resume');
$resume = $this->m_resume->search();
$this->load->vars('rs', $resume);
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->status();
$this->load->vars('sp', $spesialis);
$this->load->view('includes/template', $data);
}
// fungsi untuk menampilkan form tambah data
public function addpetugas($ket) {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_resume');}
//----end validate page tambah---------//
$data['ket'] = "1";
$data['pelayanan'] = $ket;
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'resume/form_petugas_resume';
$this->load->model('m_pasien');
$pasien = $this->m_pasien->statusaktif();
$this->load->vars('ps', $pasien);
$this->load->model('m_dokter');
$dokter = $this->m_dokter->statusaktif();
$this->load->vars('dk', $dokter);
$this->load->model('m_ruangan');
$ruang = $this->m_ruangan->pelayanan($ket);
$this->load->vars('ru', $ruang);
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->status();
$this->load->vars('sp', $spesialis);
$this->load->view('includes/template', $data);
}
//fungsi untuk memproses penambahan dengan memanggil model
public function prosesadd() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_resume');}
//----end validate page tambah---------//
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('pasien','Nama Pasien','required');
if($this->form_validation->run()==FALSE){
$data['ket'] = "1";
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'resume/form_petugas_resume';
$this->load->model('m_pasien');
$pasien = $this->m_pasien->statusaktif();
$this->load->vars('ps', $pasien);
$this->load->model('m_dokter');
$dokter = $this->m_dokter->statusaktif();
$this->load->vars('dk', $dokter);
$this->load->model('m_ruangan');
$ruang = $this->m_ruangan->status();
$this->load->vars('ru', $ruang);
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->status();
$this->load->vars('sp', $spesialis);
$this->load->view('includes/template', $data);
}else{
$this->load->model('m_resume');
$this->m_resume->insert_petugas();
$this->session->set_flashdata('message', 'Anda berhasil menambahkan Permintaan Resume baru');
redirect('index.php/ps_resume');
}
}
//fungsi untuk menampilkan form edit data dengan data terpilih
public function edit($id,$ket) {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_resume');}
//----end validate page edit---------//
$data['ket'] = $ket;
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'resume/form_petugas_resume';
$this->load->model('m_resume');
$resume = $this->m_resume->edit_petugas($id);
$this->load->vars('rs', $resume);
$this->load->model('m_pasien');
$pasien = $this->m_pasien->statusaktif();
$this->load->vars('ps', $pasien);
$this->load->model('m_dokter');
$dokter = $this->m_dokter->statusaktif();
$this->load->vars('dk', $dokter);
$this->load->model('m_ruangan');
$ruang = $this->m_ruangan->status();
$this->load->vars('ru', $ruang);
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->status();
$this->load->vars('sp', $spesialis);
$this->load->view('includes/template', $data);
}
//funsi untuk memproses update data
public function prosesedit() {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_resume');}
//----end validate page edit---------//
$id = $this->input->post('id');
$ket= $this->input->post('keter');
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
if($ket=="2"){
$this->form_validation->set_rules('pasien','Pasien','required');
}else{
$this->form_validation->set_rules('dpjp','DPJP','required');
}
if($this->form_validation->run()==FALSE){
$data['ket'] = $ket;
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'resume/form_petugas_resume';
$this->load->model('m_resume');
$resume = $this->m_resume->edit_petugas($id);
$this->load->vars('rs', $resume);
$this->load->model('m_pasien');
$pasien = $this->m_pasien->statusaktif();
$this->load->vars('ps', $pasien);
$this->load->model('m_dokter');
$dokter = $this->m_dokter->statusaktif();
$this->load->vars('dk', $dokter);
$this->load->model('m_ruangan');
$ruang = $this->m_ruangan->status();
$this->load->vars('ru', $ruang);
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->status();
$this->load->vars('sp', $spesialis);
$this->load->view('includes/template', $data);
}
else{
if($ket=="2"){
$this->session->set_flashdata('message', 'Anda berhasil mengedit permintaan Resume');
$this->load->model('m_resume');
$this->m_resume->proseseditpetugas();
redirect('index.php/ps_resume');
}else{
if($ket=="3"){
$this->session->set_flashdata('message', 'Anda berhasil mengedit Resume');
}elseif($ket=="4"){
$this->session->set_flashdata('message', 'Anda berhasil mengisi Resume');
}
$this->load->model('m_resume');
$this->m_resume->proseseditdokter();
redirect('index.php/ps_resume');
}
}
}
//fungsi untuk menampilkan form view data dengan data terpilih
public function view($id) {
//----start validate page view-------//
if($this->varview==null){redirect('index.php/ps_resume');}
//----end validate page view---------//
$data['ket'] = "5";
$data['actionform'] = 'prosesview';
$data['main_content'] = 'resume/form_petugas_resume';
$this->load->model('m_resume');
$resume = $this->m_resume->edit_petugas($id);
$this->load->vars('rs', $resume);
$this->load->model('m_pasien');
$pasien = $this->m_pasien->statusaktif();
$this->load->vars('ps', $pasien);
$this->load->model('m_dokter');
$dokter = $this->m_dokter->statusaktif();
$this->load->vars('dk', $dokter);
$this->load->model('m_ruangan');
$ruang = $this->m_ruangan->status();
$this->load->vars('ru', $ruang);
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->status();
$this->load->vars('sp', $spesialis);
$this->load->view('includes/template', $data);
}
function deletedokter($id,$ket) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_resume');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil menghapus Resume Dokter');
$this->load->model('m_resume');
$this->m_resume->deletedokter($id);
redirect('index.php/ps_resume/edit/'.$id.'/'.$ket);
}
//fungsi untuk delete
function delete($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_resume');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil menghapus Resume');
$this->load->model('m_resume');
$this->m_resume->delete($id);
redirect('index.php/ps_resume');
}
function datapasien(){
$id = $this->input->post('pasien');
$query = $this->db->query("select * from master_user
where mu_id='$id'");
foreach ($query->result() as $row){
$data[] = $row;
}
echo json_encode($data);
}
}
?>

View File

@@ -0,0 +1,183 @@
<?php
//-------------ID user login = 9
class Ps_ruangan extends CI_Controller {
//-----------start variables for check action access----------//
public $vartambah = null;
public $varedit = null;
public $vardelete = null;
public $varview = null;
//-----------start variables for check action access----------//
function __construct(){
parent::__construct();
$this->check_isvalidated();
$this->load->helper(array('form', 'date'));
}
private function check_isvalidated(){
if(! $this->session->userdata('validated_rssapintar')){
redirect('index.php/login');
}
//--------------start check access this form page-------------//
$this->db->where('mum_tipeuser_id', $this->session->userdata('s_FK_TipeUser_rssapintar'));
$this->db->where('mum_menu_id', '9');
$cekMenu = $this->db->get('master_user_menu');
$rowcount = $cekMenu->num_rows();
if($rowcount==0){
redirect('index.php');
}else{
foreach ($cekMenu->result() as $cm)
{
$this->vartambah=$cm->mum_tambah;
$this->varedit=$cm->mum_ubah;
$this->vardelete=$cm->mum_hapus;
$this->varview=$cm->mum_lihat;
}
}
//--------------end check access this form page-------------//
}
public function index($error = NULL) {
$data['title'] = 'Ruang';
$data['main_content'] = 'master/ruangan/v_ruangan';
$data['error']=$error;
$this->load->model('m_ruangan');
$ruangan = $this->m_ruangan->index();
$this->load->vars('ru', $ruangan);
$this->load->view('includes/template', $data);
}
// fungsi untuk menampilkan form tambah data
public function add() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_ruangan');}
//----end validate page tambah---------//
$data['title'] = 'Tambah Ruang';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'master/ruangan/form_ruangan';
$this->load->view('includes/template', $data);
}
//fungsi untuk memproses penambahan dengan memanggil model
public function prosesadd() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_ruangan');}
//----end validate page tambah---------//
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('nama','Nama Ruang','required');
if($this->form_validation->run()==FALSE){
$data['title'] = 'Tambah Ruang';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'master/ruangan/form_ruangan';
$this->load->view('includes/template', $data);
}else{
$this->load->model('m_ruangan');
$this->m_ruangan->insert();
$this->session->set_flashdata('message', 'Anda berhasil menambahkan Ruang baru');
redirect('index.php/ps_ruangan');
}
}
//fungsi untuk menampilkan form edit data dengan data terpilih
public function edit($id) {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_ruangan');}
//----end validate page edit---------//
$data['title'] = 'Edit Ruang';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'master/ruangan/form_ruangan';
$this->load->model('m_ruangan');
$ruangan = $this->m_ruangan->edit($id);
$this->load->vars('ru', $ruangan);
$this->load->view('includes/template', $data);
}
//funsi untuk memproses update data
public function prosesedit() {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_ruangan');}
//----end validate page edit---------//
$id = $this->input->post('id');
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('nama','Nama Ruang','required');
if($this->form_validation->run()==FALSE){
$data['title'] = 'Edit Ruang';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'master/ruangan/form_ruangan';
$this->load->model('m_ruangan');
$ruangan = $this->m_ruangan->edit($id);
$this->load->vars('ru', $ruangan);
$this->load->view('includes/template', $data);
}
else{
$this->session->set_flashdata('message', 'Anda berhasil mengedit Ruang');
$this->load->model('m_ruangan');
$this->m_ruangan->prosesedit();
redirect('index.php/ps_ruangan');
}
}
//fungsi untuk menampilkan form view data dengan data terpilih
public function view($id) {
//----start validate page view-------//
if($this->varview==null){redirect('index.php/ps_ruangan');}
//----end validate page view---------//
$data['title'] = 'View Ruang';
$data['actionform'] = 'prosesview';
$data['main_content'] = 'master/ruangan/form_ruangan';
$this->load->model('m_ruangan');
$ruangan = $this->m_ruangan->edit($id);
$this->load->vars('ru', $ruangan);
$this->load->view('includes/template', $data);
}
//fungsi untuk delete
function delete($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_ruangan');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil menghapus Ruang');
$this->load->model('m_ruangan');
$this->m_ruangan->delete($id);
redirect('index.php/ps_ruangan');
}
function disabled($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_ruangan');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil disabled Ruang');
$this->load->model('m_ruangan');
$this->m_ruangan->disabled($id);
redirect('index.php/ps_ruangan');
}
function aktif($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_ruangan');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil aktifkan Ruang');
$this->load->model('m_ruangan');
$this->m_ruangan->aktif($id);
redirect('index.php/ps_ruangan');
}
}
?>

View File

@@ -0,0 +1,183 @@
<?php
//-------------ID user login = 8
class Ps_spesialis extends CI_Controller {
//-----------start variables for check action access----------//
public $vartambah = null;
public $varedit = null;
public $vardelete = null;
public $varview = null;
//-----------start variables for check action access----------//
function __construct(){
parent::__construct();
$this->check_isvalidated();
$this->load->helper(array('form', 'date'));
}
private function check_isvalidated(){
if(! $this->session->userdata('validated_rssapintar')){
redirect('index.php/login');
}
//--------------start check access this form page-------------//
$this->db->where('mum_tipeuser_id', $this->session->userdata('s_FK_TipeUser_rssapintar'));
$this->db->where('mum_menu_id', '8');
$cekMenu = $this->db->get('master_user_menu');
$rowcount = $cekMenu->num_rows();
if($rowcount==0){
redirect('index.php');
}else{
foreach ($cekMenu->result() as $cm)
{
$this->vartambah=$cm->mum_tambah;
$this->varedit=$cm->mum_ubah;
$this->vardelete=$cm->mum_hapus;
$this->varview=$cm->mum_lihat;
}
}
//--------------end check access this form page-------------//
}
public function index($error = NULL) {
$data['title'] = 'Spesialis';
$data['main_content'] = 'master/spesialis/v_spesialis';
$data['error']=$error;
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->index();
$this->load->vars('sp', $spesialis);
$this->load->view('includes/template', $data);
}
// fungsi untuk menampilkan form tambah data
public function add() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_spesialis');}
//----end validate page tambah---------//
$data['title'] = 'Tambah Spesialis';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'master/spesialis/form_spesialis';
$this->load->view('includes/template', $data);
}
//fungsi untuk memproses penambahan dengan memanggil model
public function prosesadd() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_spesialis');}
//----end validate page tambah---------//
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('nama','Nama Spesialis','required');
if($this->form_validation->run()==FALSE){
$data['title'] = 'Tambah Spesialis';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'master/spesialis/form_spesialis';
$this->load->view('includes/template', $data);
}else{
$this->load->model('m_spesialis');
$this->m_spesialis->insert();
$this->session->set_flashdata('message', 'Anda berhasil menambahkan Spesialis baru');
redirect('index.php/ps_spesialis');
}
}
//fungsi untuk menampilkan form edit data dengan data terpilih
public function edit($id) {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_spesialis');}
//----end validate page edit---------//
$data['title'] = 'Edit Spesialis';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'master/spesialis/form_spesialis';
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->edit($id);
$this->load->vars('sp', $spesialis);
$this->load->view('includes/template', $data);
}
//funsi untuk memproses update data
public function prosesedit() {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_spesialis');}
//----end validate page edit---------//
$id = $this->input->post('id');
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('nama','Nama Spesialis','required');
if($this->form_validation->run()==FALSE){
$data['title'] = 'Edit Spesialis';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'master/spesialis/form_spesialis';
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->edit($id);
$this->load->vars('sp', $spesialis);
$this->load->view('includes/template', $data);
}
else{
$this->session->set_flashdata('message', 'Anda berhasil mengedit Spesialis');
$this->load->model('m_spesialis');
$this->m_spesialis->prosesedit();
redirect('index.php/ps_spesialis');
}
}
//fungsi untuk menampilkan form view data dengan data terpilih
public function view($id) {
//----start validate page view-------//
if($this->varview==null){redirect('index.php/ps_spesialis');}
//----end validate page view---------//
$data['title'] = 'View Spesialis';
$data['actionform'] = 'prosesview';
$data['main_content'] = 'master/spesialis/form_spesialis';
$this->load->model('m_spesialis');
$spesialis = $this->m_spesialis->edit($id);
$this->load->vars('sp', $spesialis);
$this->load->view('includes/template', $data);
}
//fungsi untuk delete
function delete($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_spesialis');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil menghapus Spesialis');
$this->load->model('m_spesialis');
$this->m_spesialis->delete($id);
redirect('index.php/ps_spesialis');
}
function disabled($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_spesialis');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil disabled Spesialis');
$this->load->model('m_spesialis');
$this->m_spesialis->disabled($id);
redirect('index.php/ps_spesialis');
}
function aktif($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_spesialis');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil aktifkan Spesialis');
$this->load->model('m_spesialis');
$this->m_spesialis->aktif($id);
redirect('index.php/ps_spesialis');
}
}
?>

View File

@@ -0,0 +1,210 @@
<?php
//-------------ID user login = 4
class Ps_userlogin extends CI_Controller {
//-----------start variables for check action access----------//
public $vartambah = null;
public $varedit = null;
public $vardelete = null;
public $varview = null;
//-----------start variables for check action access----------//
function __construct(){
parent::__construct();
$this->check_isvalidated();
$this->load->helper(array('form', 'date'));
}
private function check_isvalidated(){
if(! $this->session->userdata('validated_rssapintar')){
redirect('index.php/login');
}
//--------------start check access this form page-------------//
$this->db->where('mum_tipeuser_id', $this->session->userdata('s_FK_TipeUser_rssapintar'));
$this->db->where('mum_menu_id', '4');
$cekMenu = $this->db->get('master_user_menu');
$rowcount = $cekMenu->num_rows();
if($rowcount==0){
redirect('index.php');
}else{
foreach ($cekMenu->result() as $cm)
{
$this->vartambah=$cm->mum_tambah;
$this->varedit=$cm->mum_ubah;
$this->vardelete=$cm->mum_hapus;
$this->varview=$cm->mum_lihat;
}
}
//--------------end check access this form page-------------//
}
public function index($error = NULL) {
$data['title'] = 'User Login';
$data['main_content'] = 'setting/userlogin/v_userlogin';
$data['error']=$error;
$this->load->model('m_userlogin');
$userlogin = $this->m_userlogin->index();
$this->load->vars('ul', $userlogin);
$this->load->view('includes/template', $data);
}
// fungsi untuk menampilkan form tambah data
public function add() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_userlogin');}
//----end validate page tambah---------//
$data['title'] = 'Tambah User Login';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'setting/userlogin/form_userlogin';
$this->load->model('m_tipeuser');
$tipeuser = $this->m_tipeuser->index();
$this->load->vars('tu', $tipeuser);
$this->load->view('includes/template', $data);
}
//fungsi untuk memproses penambahan dengan memanggil model
public function prosesadd() {
//----start validate page tambah-------//
if($this->vartambah==null){redirect('index.php/ps_userlogin');}
//----end validate page tambah---------//
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('namauser','Nama User','required');
$this->form_validation->set_rules('passworduser','Password User','required');
$this->form_validation->set_rules('repassworduser', 'Retype Password', 'required|matches[passworduser]');
if($this->form_validation->run()==FALSE){
$data['title'] = 'Tambah User Login';
$data['actionform'] = 'prosesadd';
$data['main_content'] = 'setting/userlogin/form_userlogin';
$this->load->model('m_tipeuser');
$tipeuser = $this->m_tipeuser->index();
$this->load->vars('tu', $tipeuser);
$this->load->view('includes/template', $data);
}else{
$this->load->model('m_userlogin');
$this->m_userlogin->insert();
$this->session->set_flashdata('message', 'Anda berhasil menambahkan user login baru');
redirect('index.php/ps_userlogin');
}
}
//fungsi untuk menampilkan form edit data dengan data terpilih
public function edit($id) {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_userlogin');}
//----end validate page edit---------//
$data['title'] = 'Edit User Login';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'setting/userlogin/form_userlogin';
$this->load->model('m_userlogin');
$userlogin = $this->m_userlogin->edit($id);
$this->load->vars('ul', $userlogin);
$this->load->model('m_tipeuser');
$tipeuser = $this->m_tipeuser->index();
$this->load->vars('tu', $tipeuser);
$this->load->view('includes/template', $data);
}
//funsi untuk memproses update data
public function prosesedit() {
//----start validate page edit-------//
if($this->varedit==null){redirect('index.php/ps_userlogin');}
//----end validate page edit---------//
$id = $this->input->post('id');
$setpass = $this->input->post('passworduser');
$this->load->helper('form');
$this->load->helper('url');
$this->load->library('form_validation');
$this->form_validation->set_rules('namauser','Nama User','required');
if(!empty($setpass)){
$this->form_validation->set_rules('passworduser','Password User','required');
$this->form_validation->set_rules('repassworduser', 'Retype Password', 'required|matches[passworduser]');
}
if($this->form_validation->run()==FALSE){
$data['title'] = 'Edit User Login';
$data['actionform'] = 'prosesedit';
$data['main_content'] = 'setting/userlogin/form_userlogin';
$this->load->model('m_userlogin');
$userlogin = $this->m_userlogin->edit($id);
$this->load->vars('ul', $userlogin);
$this->load->model('m_tipeuser');
$tipeuser = $this->m_tipeuser->index();
$this->load->vars('tu', $tipeuser);
$this->load->view('includes/template', $data);
}
else{
$this->session->set_flashdata('message', 'Anda berhasil mengedit User Login');
$this->load->model('m_userlogin');
$this->m_userlogin->prosesedit();
redirect('index.php/ps_userlogin');
}
}
//fungsi untuk menampilkan form view data dengan data terpilih
public function view($id) {
//----start validate page view-------//
if($this->varview==null){redirect('index.php/ps_userlogin');}
//----end validate page view---------//
$data['title'] = 'View User Login';
$data['actionform'] = 'prosesview';
$data['main_content'] = 'setting/userlogin/form_userlogin';
$this->load->model('m_userlogin');
$userlogin = $this->m_userlogin->edit($id);
$this->load->vars('ul', $userlogin);
$this->load->model('m_tipeuser');
$tipeuser = $this->m_tipeuser->index();
$this->load->vars('tu', $tipeuser);
$this->load->view('includes/template', $data);
}
//fungsi untuk delete
function delete($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_userlogin');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil menghapus User Login');
$this->load->model('m_userlogin');
$this->m_userlogin->delete($id);
redirect('index.php/ps_userlogin');
}
function disabled($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_userlogin');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil disabled User Login');
$this->load->model('m_userlogin');
$this->m_userlogin->disabled($id);
redirect('index.php/ps_userlogin');
}
function aktif($id) {
//----start validate page delete-------//
if($this->vardelete==null){redirect('index.php/ps_userlogin');}
//----end validate page delete---------//
$this->session->set_flashdata('message', 'Anda berhasil aktifkan User Login');
$this->load->model('m_userlogin');
$this->m_userlogin->aktif($id);
redirect('index.php/ps_userlogin');
}
}
?>

View File

@@ -0,0 +1,31 @@
<?php
if (!defined('BASEPATH')) {
exit('No direct script access allowed');
}
class Welcome extends CI_Controller
{
function __construct(){
parent::__construct();
$this->check_isvalidated();
}
public function index()
{
$data['title'] = 'Themplate AdminLTE3';
$data['main_content'] = 'home/v_home';
$this->load->view('includes/template', $data);
}
private function check_isvalidated(){
if(! $this->session->userdata('validated_rssapintar')){
redirect('index.php/login');
}
}
public function do_logout(){
$this->session->sess_destroy();
redirect('login');
}
}

View File

@@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@@ -0,0 +1,62 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>404 Page Not Found</title>
<style type="text/css">
::selection{ background-color: #E13300; color: white; }
::moz-selection{ background-color: #E13300; color: white; }
::webkit-selection{ background-color: #E13300; color: white; }
body {
background-color: #fff;
margin: 40px;
font: 13px/20px normal Helvetica, Arial, sans-serif;
color: #4F5155;
}
a {
color: #003399;
background-color: transparent;
font-weight: normal;
}
h1 {
color: #444;
background-color: transparent;
border-bottom: 1px solid #D0D0D0;
font-size: 19px;
font-weight: normal;
margin: 0 0 14px 0;
padding: 14px 15px 10px 15px;
}
code {
font-family: Consolas, Monaco, Courier New, Courier, monospace;
font-size: 12px;
background-color: #f9f9f9;
border: 1px solid #D0D0D0;
color: #002166;
display: block;
margin: 14px 0 14px 0;
padding: 12px 10px 12px 10px;
}
#container {
margin: 10px;
border: 1px solid #D0D0D0;
-webkit-box-shadow: 0 0 8px #D0D0D0;
}
p {
margin: 12px 15px 12px 15px;
}
</style>
</head>
<body>
<div id="container">
<h1><?php echo $heading; ?></h1>
<?php echo $message; ?>
</div>
</body>
</html>

View File

@@ -0,0 +1,62 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Database Error</title>
<style type="text/css">
::selection{ background-color: #E13300; color: white; }
::moz-selection{ background-color: #E13300; color: white; }
::webkit-selection{ background-color: #E13300; color: white; }
body {
background-color: #fff;
margin: 40px;
font: 13px/20px normal Helvetica, Arial, sans-serif;
color: #4F5155;
}
a {
color: #003399;
background-color: transparent;
font-weight: normal;
}
h1 {
color: #444;
background-color: transparent;
border-bottom: 1px solid #D0D0D0;
font-size: 19px;
font-weight: normal;
margin: 0 0 14px 0;
padding: 14px 15px 10px 15px;
}
code {
font-family: Consolas, Monaco, Courier New, Courier, monospace;
font-size: 12px;
background-color: #f9f9f9;
border: 1px solid #D0D0D0;
color: #002166;
display: block;
margin: 14px 0 14px 0;
padding: 12px 10px 12px 10px;
}
#container {
margin: 10px;
border: 1px solid #D0D0D0;
-webkit-box-shadow: 0 0 8px #D0D0D0;
}
p {
margin: 12px 15px 12px 15px;
}
</style>
</head>
<body>
<div id="container">
<h1><?php echo $heading; ?></h1>
<?php echo $message; ?>
</div>
</body>
</html>

View File

@@ -0,0 +1,62 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Error</title>
<style type="text/css">
::selection{ background-color: #E13300; color: white; }
::moz-selection{ background-color: #E13300; color: white; }
::webkit-selection{ background-color: #E13300; color: white; }
body {
background-color: #fff;
margin: 40px;
font: 13px/20px normal Helvetica, Arial, sans-serif;
color: #4F5155;
}
a {
color: #003399;
background-color: transparent;
font-weight: normal;
}
h1 {
color: #444;
background-color: transparent;
border-bottom: 1px solid #D0D0D0;
font-size: 19px;
font-weight: normal;
margin: 0 0 14px 0;
padding: 14px 15px 10px 15px;
}
code {
font-family: Consolas, Monaco, Courier New, Courier, monospace;
font-size: 12px;
background-color: #f9f9f9;
border: 1px solid #D0D0D0;
color: #002166;
display: block;
margin: 14px 0 14px 0;
padding: 12px 10px 12px 10px;
}
#container {
margin: 10px;
border: 1px solid #D0D0D0;
-webkit-box-shadow: 0 0 8px #D0D0D0;
}
p {
margin: 12px 15px 12px 15px;
}
</style>
</head>
<body>
<div id="container">
<h1><?php echo $heading; ?></h1>
<?php echo $message; ?>
</div>
</body>
</html>

View File

@@ -0,0 +1,10 @@
<div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
<h4>A PHP Error was encountered</h4>
<p>Severity: <?php echo $severity; ?></p>
<p>Message: <?php echo $message; ?></p>
<p>Filename: <?php echo $filepath; ?></p>
<p>Line Number: <?php echo $line; ?></p>
</div>

View File

@@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

10
application/index.html Normal file
View File

@@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

Some files were not shown because too many files have changed in this diff Show More