blob: c12a2c81f393d2e1c4c22c6dfab0e543fcba1a34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?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 $time_insert = FALSE;
protected $time_update = FALSE;
#===============================================================================
# Define database table name
#===============================================================================
const TABLE = 'page';
}
?>
|