| 1 | <?php |
||
| 7 | 1 | abstract class BaseControl extends Control |
|
| 8 | { |
||
| 9 | |||
| 10 | const TEMPLATE_DIR = __DIR__ . '/../templates/components'; |
||
| 11 | const TEMPLATE_EXT = 'latte'; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var integer |
||
| 15 | */ |
||
| 16 | protected $meetingId = null; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return integer |
||
| 20 | */ |
||
| 21 | public function getMeetingId() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param integer $id |
||
| 28 | * @return $this |
||
| 29 | */ |
||
| 30 | public function setMeetingId($id = null) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | protected function buildTemplatePath() |
||
| 49 | |||
| 50 | } |
||
| 51 |