Changeset 2224
- Timestamp:
- 03/05/08 18:28:23 (6 months ago)
- Location:
- trunk/system
- Files:
-
- 2 modified
-
controllers/template.php (modified) (1 diff)
-
libraries/Controller.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/controllers/template.php
r2083 r2224 15 15 * @license http://kohanaphp.com/license.html 16 16 */ 17 class Template_Controller extends Controller {17 abstract class Template_Controller extends Controller { 18 18 19 19 // Template view name -
trunk/system/libraries/Controller.php
r2010 r2224 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * Kohana Controller class. 3 * Kohana Controller class. The controller class must be extended to work 4 * properly, so this class is defined as abstract. 4 5 * 5 6 * $Id$ … … 10 11 * @license http://kohanaphp.com/license.html 11 12 */ 12 class Controller_Core {13 abstract class Controller_Core { 13 14 14 15 /**
