1 | <?php |
||
17 | class AccountValues extends \hipanel\base\Model |
||
18 | { |
||
19 | use \hipanel\base\ModelTrait; |
||
20 | |||
21 | const SCENARIO_DEFAULT = 'dumb'; |
||
22 | |||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | public static function tableName() |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function rules() |
||
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | */ |
||
54 | public function attributeLabels() |
||
59 | |||
60 | /** |
||
61 | * {@inheritdoc} |
||
62 | */ |
||
63 | public static function primaryKey() |
||
67 | |||
68 | /** |
||
69 | * {@inheritdoc} |
||
70 | */ |
||
71 | public function scenarioActions() |
||
77 | } |
||
78 |