| 1 | <?php |
||
| 8 | class ModelPanel extends AbstractSubscriablePanel implements IAjaxPanel |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * $models. |
||
| 12 | * |
||
| 13 | * @var array |
||
| 14 | */ |
||
| 15 | protected $models = []; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * $total number of models. |
||
| 19 | * |
||
| 20 | * @var int |
||
| 21 | */ |
||
| 22 | protected $total = 0; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * subscribe. |
||
| 26 | */ |
||
| 27 | protected function subscribe() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * getAttributes. |
||
| 43 | * |
||
| 44 | * @return array |
||
| 45 | */ |
||
| 46 | protected function getAttributes() |
||
| 53 | } |
||
| 54 |