You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
524 B
23 lines
524 B
<?php namespace Majestic\App;
|
|
/**
|
|
* @copyright NetMonsters <team@netmonsters.ru>
|
|
* @link http://netmonsters.ru
|
|
* @package Majestic
|
|
* @subpackage app
|
|
* @since 2010-02-25
|
|
*/
|
|
|
|
abstract class StaticAction extends Action
|
|
{
|
|
|
|
protected function getTemplate()
|
|
{
|
|
$template = ($this->template) ? $this->template : substr(get_class($this), 0, -6 /*strlen('Action')*/);
|
|
return '/static/' . $template;
|
|
}
|
|
|
|
public function fetch()
|
|
{
|
|
return $this->view->fetch($this->getTemplate());
|
|
}
|
|
}
|