Model.php
779 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
namespace ACP;
use AC;
abstract class Model {
/**
* @var AC\Column
*/
protected $column;
/**
* @var string
*/
private $data_type = 'string';
/**
* @return bool
*/
abstract public function is_active();
public function __construct( AC\Column $column ) {
$this->column = $column;
}
/**
* @return AC\Column
*/
public function get_column() {
return $this->column;
}
/**
* @param string $data_type
*
* @return $this
*/
public function set_data_type( $data_type ) {
$data_type = strtolower( $data_type );
if ( in_array( $data_type, [ 'string', 'numeric', 'date' ] ) ) {
$this->data_type = $data_type;
}
return $this;
}
/**
* @return string
*/
public function get_data_type() {
return $this->data_type;
}
}