|
- <?php
-
- namespace frontend\components ;
-
- class MyView extends \yii\web\View {
-
- var $icon ;
- var $page_title ;
- var $subtitle ;
-
- public function setTitle($title, $icon = '') {
- $this->title = $title ;
- $this->page_title = $title ;
- $this->icon = $icon ;
- }
-
- public function getTitle() {
- return $this->title ;
- }
-
- public function setPageTitle($page_title) {
- $this->page_title = $page_title ;
- }
-
- public function getPageTitle() {
- return $this->page_title ;
- }
-
- public function setSubtitle($subtitle) {
- $this->subtitle = $subtitle ;
- }
-
- public function getSubtitle() {
- return $this->subtitle ;
- }
-
- public function getTitleIcon() {
- return $this->icon ;
- }
-
- }
|