Initial import from local backup (Documents-Playground/pakerpale)
This commit is contained in:
8
application/core/MY_Controller.php
Normal file
8
application/core/MY_Controller.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
|
||||
class MY_Controller extends CI_Controller {
|
||||
|
||||
public function __construct() {
|
||||
parent::__construct();
|
||||
}
|
||||
}
|
||||
9
application/core/MY_Model.php
Normal file
9
application/core/MY_Model.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
|
||||
class MY_Model extends CI_Model {
|
||||
|
||||
public function __consturct() {
|
||||
parent::__construct();
|
||||
$this->load->database();
|
||||
}
|
||||
}
|
||||
10
application/core/index.html
Normal file
10
application/core/index.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user