12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * Welcome Controller
- **
- *
- * @package ClanCatsFramework
- * @author Mario Döring <[email protected]>
- * @version 2.0
- * @copyright 2010 - 2014 ClanCats GmbH
- *
- */
- class WelcomeController extends CCViewController
- {
- /**
- * The default theme
- * if you wish you can render this controller with a special theme
- *
- * @var string
- */
- protected $_theme = null;
-
- /**
- * the index function is just "function <controller_name>Index() {}"
- */
- public function action_index()
- {
- $this->theme->topic = "Willkommen";
-
- $this->view = $this->theme->view( 'welcome', array(
- 'runtime_name' => ClanCats::runtime( 'name' ),
- 'environment' => ClanCats::environment(),
- ));
- }
- }
|