選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

22 行
370B

  1. <?php
  2. namespace frontend\components ;
  3. class MyView extends \yii\web\View {
  4. var $icon ;
  5. public function setTitle($title, $icon) {
  6. $this->title = $title ;
  7. $this->icon = $icon ;
  8. }
  9. public function getTitle() {
  10. return $this->title ;
  11. }
  12. public function getTitleIcon() {
  13. return $this->icon ;
  14. }
  15. }