Subversion-Projekte lars-tiefland.cakephp

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/* SVN FILE: $Id: app_model.php 7945 2008-12-19 02:16:01Z gwoo $ */
3
 
4
/**
5
 * Application model for Cake.
6
 *
7
 * This file is application-wide model file. You can put all
8
 * application-wide model-related methods here.
9
 *
10
 * PHP versions 4 and 5
11
 *
12
 * CakePHP(tm) :  Rapid Development Framework (http://www.cakephp.org)
13
 * Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
14
 *
15
 * Licensed under The MIT License
16
 * Redistributions of files must retain the above copyright notice.
17
 *
18
 * @filesource
19
 * @copyright     Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
20
 * @link          http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
21
 * @package       cake
22
 * @subpackage    cake.app
23
 * @since         CakePHP(tm) v 0.2.9
24
 * @version       $Revision: 7945 $
25
 * @modifiedby    $LastChangedBy: gwoo $
26
 * @lastmodified  $Date: 2008-12-18 18:16:01 -0800 (Thu, 18 Dec 2008) $
27
 * @license       http://www.opensource.org/licenses/mit-license.php The MIT License
28
 */
29
 
30
/**
31
 * Application model for Cake.
32
 *
33
 * Add your application-wide methods in the class below, your models
34
 * will inherit them.
35
 *
36
 * @package       cake
37
 * @subpackage    cake.app
38
 */
39
class AppModel extends Model {
40
}
41
?>