-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
91 additions
and
124 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 |
---|---|---|
@@ -1 +1,2 @@ | ||
db.php | ||
db.php | ||
userspace.php |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,11 +15,22 @@ | |
* @link http://yupe.ru | ||
*/ | ||
|
||
namespace yupe\modules\yupe; | ||
|
||
use Yii; | ||
|
||
class YupeModule extends components\YWebModule | ||
/** | ||
* YupeModule файл класса. | ||
* Модуль yupe - основной модуль системы. | ||
* | ||
* Модуль yupe содержит в себе все основные компоненты, которые используются другими модулями | ||
* Это наше ядрышко. Классы ядра рекомендуется именовать с буквы "Y", пример YWebUser. | ||
* | ||
* @category YupeMudules | ||
* @package YupeCMS | ||
* @author Andrey Opeykin <[email protected]> | ||
* @copyright 2009-2013 Yupe! Copyright © | ||
* @license BSD http://ru.wikipedia.org/wiki/%D0%9B%D0%B8%D1%86%D0%B5%D0%BD%D0%B7%D0%B8%D1%8F_BSD | ||
* @version 0.5.3 | ||
* @link http://yupe.ru | ||
*/ | ||
class YupeModule extends YWebModule | ||
{ | ||
public $enableAssets; | ||
public $cache; | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,17 @@ | |
* @link http://yupe.ru | ||
**/ | ||
|
||
namespace yupe\modules\yupe\components; | ||
/** | ||
* ContentType of file | ||
* Класс определяющий тип контента: | ||
* | ||
* @category YupeComponents | ||
* @package YupeCMS | ||
* @author AKulikov <[email protected]> | ||
* @license BSD https://raw.github.com/yupe/yupe/master/LICENSE | ||
* @version 0.0.1 | ||
* @link http://yupe.ru | ||
**/ | ||
|
||
class YContentType | ||
{ | ||
|
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 |
---|---|---|
@@ -1,25 +1,28 @@ | ||
<?php | ||
|
||
/** | ||
* Widget YCustomGridView | ||
* | ||
* @category Widget | ||
* @package Yupe | ||
* @author Yupe Team <[email protected]> | ||
* @license https://github.com/yupe/yupe/blob/master/LICENSE BSD | ||
* @link http://yupe.ru | ||
* @todo можно реализовать мультиекшен на основе вызова | ||
* метода из YCustomGridView и обращаться непосредственно | ||
* к модели. | ||
**/ | ||
|
||
namespace yupe\modules\yupe\components; | ||
|
||
use Yii; | ||
use CHtml; | ||
* Class of widget YCustomGridView | ||
* | ||
* @category Widget | ||
* @package Yupe | ||
* @author Yupe Team <[email protected]> | ||
* @license https://github.com/yupe/yupe/blob/master/LICENSE BSD | ||
* @link http://yupe.ru | ||
*/ | ||
|
||
Yii::import('bootstrap.widgets.TbExtendedGridView'); | ||
|
||
/** | ||
* Widget YCustomGridView | ||
* | ||
* @category Widget | ||
* @package Yupe | ||
* @author Yupe Team <[email protected]> | ||
* @license https://github.com/yupe/yupe/blob/master/LICENSE BSD | ||
* @link http://yupe.ru | ||
* @todo можно реализовать мультиекшен на основе вызова | ||
* метода из YCustomGridView и обращаться непосредственно | ||
* к модели. | ||
**/ | ||
class YCustomGridView extends TbExtendedGridView | ||
{ | ||
/** | ||
|
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.