forked from infinitas/infinitas
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp_model.php
More file actions
36 lines (33 loc) · 731 Bytes
/
Copy pathapp_model.php
File metadata and controls
36 lines (33 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
* Comment Template.
*
* @todo Implement .this needs to be sorted out.
*
* Copyright (c) 2009 Carl Sutton ( dogmatic69 )
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
* @filesource
* @copyright Copyright (c) 2009 Carl Sutton ( dogmatic69 )
* @link http://www.dogmatic.co.za
* @package sort
* @subpackage sort.comments
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
* @since 0.5a
*/
class AppModel extends Model {
/**
* The database configuration to use for the site.
*/
var $useDbConfig = 'default';
/**
* Behaviors to attach to the site.
*/
var $actsAs = array(
'Containable',
'Libs.Lockable',
'Libs.Logable'
);
}
?>