-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from codeigniter4/develop
Update develop branch
- Loading branch information
Showing
202 changed files
with
1,806 additions
and
617 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?php namespace App\Controllers; | ||
|
||
/** | ||
* Class BaseController | ||
* | ||
* BaseController provides a convenient place for loading components | ||
* and performing functions that are needed by all your controllers. | ||
* Extend this class in any new controllers: | ||
* class Home extends BaseController | ||
* | ||
* For security be sure to declare any new methods as protected or private. | ||
* | ||
* @package CodeIgniter | ||
*/ | ||
|
||
use CodeIgniter\Controller; | ||
|
||
class BaseController extends Controller | ||
{ | ||
|
||
/** | ||
* An array of helpers to be loaded automatically upon | ||
* class instantiation. These helpers will be available | ||
* to all other controllers that extend BaseController. | ||
* | ||
* @var array | ||
*/ | ||
protected $helpers = [ ]; | ||
|
||
/** | ||
* Constructor. | ||
* | ||
*/ | ||
public function initController(\CodeIgniter\HTTP\RequestInterface $request, \CodeIgniter\HTTP\ResponseInterface $response, \Psr\Log\LoggerInterface $logger) | ||
{ | ||
// Do Not Edit This Line | ||
parent::initController($request, $response, $logger); | ||
|
||
//-------------------------------------------------------------------- | ||
// Preload any models, libraries, etc, here. | ||
//-------------------------------------------------------------------- | ||
// E.g.: | ||
// $this->session = \Config\Services::session(); | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.