| 1 | <?php |
||
| 11 | class DocumentFolderComponent extends BaseComponent |
||
| 12 | { |
||
| 13 | const PARAMETER_DOCUMENT_FOLDER_PATH = 'documentFolderPath'; |
||
| 14 | const PARAMETER_DOCUMENT_FOLDER_PARAMETER_NAME = 'documentFolderParameter'; |
||
| 15 | |||
| 16 | protected $documentFolderParameterName = 'folder'; |
||
| 17 | protected $documentFolderPath; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param Storage $storage |
||
| 21 | * |
||
| 22 | * @return mixed|void |
||
| 23 | * @throws \Exception |
||
| 24 | */ |
||
| 25 | public function run(Storage $storage) |
||
| 33 | |||
| 34 | |||
| 35 | /** |
||
| 36 | * Checks to see if any parameters were defined in the cms and acts according |
||
| 37 | */ |
||
| 38 | private function checkParameters() |
||
| 48 | } |