Run this in your command line to make the process begin:
$ curl -o ko3.3_structure.sh https://raw.github.com/gist/2643818/ko3.3_structure.sh && ./ko3.3_structure.sh
<?php defined('SYSPATH') or die('No direct script access.'); | |
/** | |
* Базовый класс контроллера-шаблона | |
* | |
* @author avis <[email protected]> | |
*/ | |
abstract class Controller_Template extends Kohana_Controller_Template { | |
/** |
<?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 |
<?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); | |
} |
<?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 { |
<?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 { |
Thumb.bd | |
.DS_Store | |
.svn | |
.htaccess | |
*.log | |
*~ | |
*.swp | |
*.mwb | |
*.bak | |
Icon? |
Run this in your command line to make the process begin: | |
$ curl -o ko3_structure.sh https://raw.github.com/gist/1702555/ko3_structure.sh && ./ko3_structure.sh |
Run this in your command line to make the process begin:
$ curl -o ko3.3_structure.sh https://raw.github.com/gist/2643818/ko3.3_structure.sh && ./ko3.3_structure.sh
Скачивание/обновление файла deploy.sh:
$ curl -o deploy.sh https://gist.githubusercontent.com/smgladkovskiy/6133041/raw/deploy.sh
Скачивание файла project.sh:
$ curl -o project.sh https://gist.githubusercontent.com/smgladkovskiy/6133041/raw/project.sh
Скачивание файла доп комманд extra_commands.sh:
<?php defined('SYSPATH') OR die('No direct access allowed.'); | |
$version = 'wip'; | |
$version_config = Kohana::$config->load('version'); | |
if($version_config->as_array()) | |
{ | |
$version = $version_config->version; | |
} | |
return array( |