| Conditions | 1 |
| Paths | 1 |
| Total Lines | 20 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| 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 | // テンプレートエンジン関連の処理 |
||
| 48 | $assign_value = [ |
||
| 49 | 'header' => $header, |
||
| 50 | 'param' => $this->GetParam(), |
||
| 51 | 'get' => $_GET, |
||
| 52 | 'post' => $_POST, |
||
| 53 | 'server' => $_SERVER |
||
| 54 | ]; |
||
| 55 | $this->risolutoView( $assign_value ); |
||
| 56 | } |
||
| 57 | } |