Total Complexity | 5 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
5 | class ConsoleScaffoldController extends ScaffoldController { |
||
6 | private $activeDir; |
||
7 | |||
8 | public function __construct($activeDir) { |
||
9 | $this->activeDir = $activeDir; |
||
10 | } |
||
11 | |||
12 | protected function storeControllerNameInSession($controller) { |
||
13 | } |
||
14 | |||
15 | protected function showSimpleMessage($content, $type, $title = null, $icon = "info", $timeout = NULL, $staticName = null) { |
||
16 | $content = str_replace ( "<br>", "\n", $content ); |
||
17 | return strip_tags ( $content ); |
||
18 | } |
||
19 | |||
20 | protected function getTemplateDir() { |
||
22 | } |
||
23 | |||
24 | protected function _addMessageForRouteCreation($path, $jsCallback = "") { |
||
26 | } |
||
27 | } |
||
29 |