Merge branch 'sql_criteria' of dimti.ru:majestic into sql_criteria

This commit is contained in:
2014-04-29 19:48:08 +04:00
2 changed files with 7 additions and 1 deletions

View File

@ -69,7 +69,7 @@ class FrontController
/** /**
* *
* @param null $view * @param null $view
* @return iView * @return PHPView
*/ */
public function getView($view = null) public function getView($view = null)
{ {

View File

@ -14,6 +14,12 @@
* @method MsgViewHelper msg() msg(string $msg = null, string $type = null) Set a message to display for user in Layout * @method MsgViewHelper msg() msg(string $msg = null, string $type = null) Set a message to display for user in Layout
* @method TitleViewHelper title() title(string $string = false) Append another section for TITLE of Layout * @method TitleViewHelper title() title(string $string = false) Append another section for TITLE of Layout
* @method FormViewHelper form() form(string $form = null) Get form values from session * @method FormViewHelper form() form(string $form = null) Get form values from session
* @method LinkHeadViewHelper linkHead() linkHead($href = false, $rel = 'stylesheet', $type = 'text/css', $media = 'screen,projection,print') Append link tag (css file or other) into head section
* @method ScriptFooterViewHelper scriptFooter() scriptFooter($src = false, $type = 'text/javascript') Append script src (javascript or other) into footer section
* @method GroupedCssViewHelper groupedCss() groupedCss($relative_file_path = false) Append css into one file
* @method GroupedJsViewHelper groupedJs() groupedJs($relative_file_path = false) Append js into one file
* @method DescriptionViewHelper description() description(string $string = false) Set value of meta-tag description
* @method KeywordsViewHelper keywords() keywords(string $string = false) Set value of meta-tag keywords
* *
*/ */
class PHPView implements iView class PHPView implements iView