This file contains hidden or 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
| Thumb.bd | |
| .DS_Store | |
| .svn | |
| .htaccess | |
| *.log | |
| *~ | |
| *.swp | |
| *.mwb | |
| *.bak | |
| Icon? |
This file contains hidden or 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
| <?php defined('SYSPATH') or die('No direct script access.'); | |
| /** | |
| * Template Controller | |
| * | |
| * @package Templates | |
| * @author Sergei Gladkovskiy <[email protected]> | |
| */ | |
| abstract class Controller_Template extends Kohana_Controller_Template { |
This file contains hidden or 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
| <?php defined('SYSPATH') or die('No direct access allowed.'); | |
| /** | |
| * Ajax Template Controller template | |
| * | |
| * @package Templates | |
| * @author Sergei Gladkovskiy <[email protected]> | |
| */ | |
| abstract class Controller_Ajax_Template extends Controller { |
This file contains hidden or 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
| <?php defined('SYSPATH') or die('No direct access allowed.'); | |
| class Kohana_Exception extends Kohana_Kohana_Exception { | |
| public static function handler(Exception $e) | |
| { | |
| if (Kohana::$environment > Kohana::PRODUCTION) | |
| { | |
| parent::handler($e); | |
| } |
This file contains hidden or 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
| <?php defined('SYSPATH') or die('No direct access allowed.'); | |
| /** | |
| * Controller Error | |
| * | |
| * @package Templates | |
| * @author Kohana-World Development Team | |
| * @author Sergei Gladkovskiy <[email protected]> | |
| * @license MIT License | |
| * @copyright 2011 Kohana-World Development Team |
This file contains hidden or 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
| <?php defined('SYSPATH') or die('No direct script access.'); | |
| /** | |
| * Базовый класс контроллера-шаблона | |
| * | |
| * @author avis <[email protected]> | |
| */ | |
| abstract class Controller_Template extends Kohana_Controller_Template { | |
| /** |
NewerOlder