X7ROOT File Manager
Current Path:
/home/jurarevi/beta.jurareview.ro/system/core
home
/
jurarevi
/
beta.jurareview.ro
/
system
/
core
/
📁
..
📄
Benchmark.php
(2.96 KB)
📄
CodeIgniter.php
(11.21 KB)
📄
Common.php
(12.89 KB)
📄
Config.php
(8.08 KB)
📄
Controller.php
(1.61 KB)
📄
Exceptions.php
(4.67 KB)
📄
Hooks.php
(4.67 KB)
📄
Input.php
(18.6 KB)
📄
Lang.php
(3.63 KB)
📄
Loader.php
(29.94 KB)
📄
Model.php
(1.25 KB)
📄
Output.php
(12.72 KB)
📄
Router.php
(12.19 KB)
📄
Security.php
(23.43 KB)
📄
URI.php
(14.19 KB)
📄
Utf8.php
(3.58 KB)
📄
index.html
(114 B)
Editing: Model.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /** * CodeIgniter * * An open source application development framework for PHP 5.1.6 or newer * * @package CodeIgniter * @author EllisLab Dev Team * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. * @copyright Copyright (c) 2014 - 2015, British Columbia Institute of Technology (http://bcit.ca/) * @license http://codeigniter.com/user_guide/license.html * @link http://codeigniter.com * @since Version 1.0 * @filesource */ // ------------------------------------------------------------------------ /** * CodeIgniter Model Class * * @package CodeIgniter * @subpackage Libraries * @category Libraries * @author EllisLab Dev Team * @link http://codeigniter.com/user_guide/libraries/config.html */ class CI_Model { /** * Constructor * * @access public */ function __construct() { log_message('debug', "Model Class Initialized"); } /** * __get * * Allows models to access CI's loaded classes using the same * syntax as controllers. * * @param string * @access private */ function __get($key) { $CI =& get_instance(); return $CI->$key; } } // END Model Class /* End of file Model.php */ /* Location: ./system/core/Model.php */
Upload File
Create Folder