Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 13 |
Ratio | 100 % |
Changes | 2 | ||
Bugs | 2 | Features | 1 |
1 | <?php |
||
37 | public function play() |
||
38 | { |
||
39 | // ユーザ定義のライブラリコール例 |
||
40 | \RisolutoUserLibs\SampleLibs::sampleMethod(); |
||
41 | |||
42 | // ヘッダ情報のセット |
||
43 | $header = $this->getDefaultHeader(); |
||
44 | $header = $this->replaceHeader( $header, 'robots', 'NOINDEX,NOFOLLOW' ); |
||
45 | |||
46 | // テンプレートエンジン関連の処理 |
||
47 | $assign_value = [ 'header' => $header ]; |
||
48 | $this->risolutoView( $assign_value ); |
||
49 | } |
||
50 | } |