| Total Complexity | 7 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class CbStructure |
||
| 6 | { |
||
| 7 | public static function componentsPath(string $type = ''): string |
||
| 8 | { |
||
| 9 | $componentPath = implode(DIRECTORY_SEPARATOR, ['vendor', 'crocodicstudio', 'crudbooster', 'src', 'views', 'form', 'type_components', $type]); |
||
| 10 | |||
| 11 | return base_path($componentPath); |
||
| 12 | } |
||
| 13 | |||
| 14 | public static function publishedComponentsPath(string $type = ''): string |
||
| 19 | } |
||
| 20 | |||
| 21 | public static function controllerPath(string $controller): string |
||
| 24 | } |
||
| 25 | |||
| 26 | public static function controllersDir(): string |
||
| 31 | } |
||
| 32 | |||
| 33 | public static function cbModulesNS(string $path = ''): string |
||
| 36 | } |
||
| 37 | |||
| 38 | public static function cbControllersNS(): string |
||
| 41 | } |
||
| 42 | |||
| 43 | public static function ctrlNamespace(): string |
||
| 46 | } |
||
| 47 | } |