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
class Debug extends Kohana_Debug { | |
public static function vars() | |
{ | |
if (func_num_args() === 0) | |
return; | |
$backtrace = debug_backtrace(); | |
$path = $backtrace[0]['file']; | |
$filename = Debug::path($path); |
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
<?php defined('SYSPATH') or die('No direct script access.'); | |
class Request extends Kohana_Request { | |
public function uri(array $params = null) | |
{ | |
if ($params === NULL) | |
{ | |
return parent::uri(); | |
} |
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
/* ------------------------------------- | |
cusel version 2.5 | |
last update: 31.10.11 | |
смена обычного селект на стильный | |
autor: Evgen Ryzhkov | |
updates by: | |
- Alexey Choporov | |
- Roman Omelkovitch | |
using libs: |
OlderNewer