aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/Page/Attribute.php
blob: b1c4e01edc07fe61e02955d8f7279bde03c7d440 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
namespace Page;

class Attribute extends \Attribute {

	#===============================================================================
	# Pre-Define database table columns
	#===============================================================================
	protected $id   = FALSE;
	protected $user = FALSE;
	protected $slug = FALSE;
	protected $name = FALSE;
	protected $body = FALSE;
	protected $argv = FALSE;
	protected $time_insert = FALSE;
	protected $time_update = FALSE;

	#===============================================================================
	# Define database table name
	#===============================================================================
	const TABLE = 'page';
}
?>