12 lines
139 B
PHP
12 lines
139 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
class Template_Named_Controller extends Controller {
|
||
|
|
|
||
|
|
public $layout = 'name: home';
|
||
|
|
|
||
|
|
public function action_index()
|
||
|
|
{
|
||
|
|
//
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|