@@ -8,28 +8,28 @@ discard block |
||
| 8 | 8 | | --------------------------------------------------------------------------------------------------------------- |
| 9 | 9 | | |
| 10 | 10 | */ |
| 11 | -if (! function_exists('cbModulesNS')) { |
|
| 11 | +if (!function_exists('cbModulesNS')) { |
|
| 12 | 12 | function cbModulesNS($path = '') |
| 13 | 13 | { |
| 14 | 14 | return '\crocodicstudio\crudbooster\Modules\\'.$path; |
| 15 | 15 | } |
| 16 | 16 | } |
| 17 | 17 | |
| 18 | -if (! function_exists('cbAdminPath')) { |
|
| 18 | +if (!function_exists('cbAdminPath')) { |
|
| 19 | 19 | function cbAdminPath() |
| 20 | 20 | { |
| 21 | 21 | return cbConfig('ADMIN_PATH'); |
| 22 | 22 | } |
| 23 | 23 | } |
| 24 | 24 | |
| 25 | -if (! function_exists('ctrlNamespace')) { |
|
| 25 | +if (!function_exists('ctrlNamespace')) { |
|
| 26 | 26 | function ctrlNamespace() |
| 27 | 27 | { |
| 28 | 28 | return 'App\Http\Controllers'; |
| 29 | 29 | } |
| 30 | 30 | } |
| 31 | 31 | |
| 32 | -if (! function_exists('is_checked')) { |
|
| 32 | +if (!function_exists('is_checked')) { |
|
| 33 | 33 | /** |
| 34 | 34 | * @param $format |
| 35 | 35 | * @param $value |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | } |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | -if (! function_exists('controllers_dir')) { |
|
| 56 | +if (!function_exists('controllers_dir')) { |
|
| 57 | 57 | function controllers_dir() |
| 58 | 58 | { |
| 59 | 59 | $_ = DIRECTORY_SEPARATOR; |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | } |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | -if (! function_exists('controller_path')) { |
|
| 64 | +if (!function_exists('controller_path')) { |
|
| 65 | 65 | function controller_path($controller) |
| 66 | 66 | { |
| 67 | 67 | $_ = DIRECTORY_SEPARATOR; |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | } |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | -if (! function_exists('extract_unit')) { |
|
| 72 | +if (!function_exists('extract_unit')) { |
|
| 73 | 73 | /* |
| 74 | 74 | Credits: Bit Repository |
| 75 | 75 | URL: http://www.bitrepository.com/extract-content-between-two-delimiters-with-php.html |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | } |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | -if (! function_exists('now')) { |
|
| 90 | +if (!function_exists('now')) { |
|
| 91 | 91 | function now() |
| 92 | 92 | { |
| 93 | 93 | return date('Y-m-d H:i:s'); |
@@ -101,14 +101,14 @@ discard block |
||
| 101 | 101 | | $name = name of input |
| 102 | 102 | | |
| 103 | 103 | */ |
| 104 | -if (! function_exists('g')) { |
|
| 104 | +if (!function_exists('g')) { |
|
| 105 | 105 | function g($name) |
| 106 | 106 | { |
| 107 | 107 | return Request::get($name); |
| 108 | 108 | } |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | -if (! function_exists('cbTrans')) { |
|
| 111 | +if (!function_exists('cbTrans')) { |
|
| 112 | 112 | /** |
| 113 | 113 | * Translate the given message. |
| 114 | 114 | * |
@@ -122,34 +122,34 @@ discard block |
||
| 122 | 122 | } |
| 123 | 123 | } |
| 124 | 124 | |
| 125 | -if (! function_exists('cbAsset')) { |
|
| 125 | +if (!function_exists('cbAsset')) { |
|
| 126 | 126 | function cbAsset($key) |
| 127 | 127 | { |
| 128 | 128 | return asset('vendor/crudbooster/assets/'.$key); |
| 129 | 129 | } |
| 130 | 130 | } |
| 131 | 131 | |
| 132 | -if (! function_exists('cbScript')) { |
|
| 132 | +if (!function_exists('cbScript')) { |
|
| 133 | 133 | function cbScript($key) |
| 134 | 134 | { |
| 135 | 135 | return '<script src="'.cbAsset($key).'" type="text/javascript"></script>'; |
| 136 | 136 | } |
| 137 | 137 | } |
| 138 | 138 | |
| 139 | -if (! function_exists('cbStyleSheet')) { |
|
| 139 | +if (!function_exists('cbStyleSheet')) { |
|
| 140 | 140 | function cbStyleSheet($key) |
| 141 | 141 | { |
| 142 | 142 | return '<link rel="stylesheet" type="text/css" href="'.cbAsset($key).'"/>'; |
| 143 | 143 | } |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | -if (! function_exists('cbConfig')) { |
|
| 146 | +if (!function_exists('cbConfig')) { |
|
| 147 | 147 | function cbConfig($key, $default = null) |
| 148 | 148 | { |
| 149 | 149 | return config('crudbooster.'.$key, $default); |
| 150 | 150 | } |
| 151 | 151 | } |
| 152 | -if (! function_exists('makeValidationForHTML')) { |
|
| 152 | +if (!function_exists('makeValidationForHTML')) { |
|
| 153 | 153 | function makeValidationForHTML($rules) |
| 154 | 154 | { |
| 155 | 155 | $validation = []; |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | } |
| 168 | 168 | } |
| 169 | 169 | |
| 170 | -if (! function_exists('findSelected')) { |
|
| 170 | +if (!function_exists('findSelected')) { |
|
| 171 | 171 | /** |
| 172 | 172 | * @param $rawvalue |
| 173 | 173 | * @param $form |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | */ |
| 177 | 177 | function findSelected($rawvalue, $form, $optionValue) |
| 178 | 178 | { |
| 179 | - if (! $rawvalue) { |
|
| 179 | + if (!$rawvalue) { |
|
| 180 | 180 | return ''; |
| 181 | 181 | } |
| 182 | 182 | $value = $rawvalue; |
@@ -198,7 +198,7 @@ discard block |
||
| 198 | 198 | return $selected; |
| 199 | 199 | } |
| 200 | 200 | } |
| 201 | -if (! function_exists('array_get_keys')) { |
|
| 201 | +if (!function_exists('array_get_keys')) { |
|
| 202 | 202 | |
| 203 | 203 | /** |
| 204 | 204 | * @param array $_array |
@@ -214,24 +214,24 @@ discard block |
||
| 214 | 214 | } |
| 215 | 215 | } |
| 216 | 216 | |
| 217 | -if (! function_exists('cbGetSetting')) { |
|
| 217 | +if (!function_exists('cbGetSetting')) { |
|
| 218 | 218 | function cbGetSetting($name) |
| 219 | 219 | { |
| 220 | 220 | return \crocodicstudio\crudbooster\Modules\SettingModule\SettingRepo::getSetting($name); |
| 221 | 221 | } |
| 222 | 222 | } |
| 223 | 223 | |
| 224 | -if (! function_exists('backWithMsg')) { |
|
| 224 | +if (!function_exists('backWithMsg')) { |
|
| 225 | 225 | function backWithMsg($msg, $type = 'success') |
| 226 | 226 | { |
| 227 | 227 | sendAndTerminate(redirect()->back()->with(['message_type' => $type, 'message' => $msg])); |
| 228 | 228 | } |
| 229 | 229 | } |
| 230 | 230 | |
| 231 | -if (! function_exists('underField')) { |
|
| 231 | +if (!function_exists('underField')) { |
|
| 232 | 232 | function underField($help, $error) |
| 233 | 233 | { |
| 234 | - $error = $error ? "<i class='fa fa-info-circle'></i> $error":'' ; |
|
| 234 | + $error = $error ? "<i class='fa fa-info-circle'></i> $error" : ''; |
|
| 235 | 235 | return "<div class='text-danger'>$error</div><p class='help-block'>$help</p>"; |
| 236 | 236 | } |
| 237 | 237 | } |
@@ -229,7 +229,7 @@ |
||
| 229 | 229 | |
| 230 | 230 | public static function stringify($input, $indent = "") |
| 231 | 231 | { |
| 232 | - if (! is_array($input)) { |
|
| 232 | + if (!is_array($input)) { |
|
| 233 | 233 | return var_export($input, true); |
| 234 | 234 | } |
| 235 | 235 | $buffer = []; |
@@ -78,7 +78,7 @@ |
||
| 78 | 78 | * @param $finalTagPenutup |
| 79 | 79 | * @return array |
| 80 | 80 | */ |
| 81 | - /* private static function getContents($codeArray, $tagBuka, $finalTagPenutup) |
|
| 81 | + /* private static function getContents($codeArray, $tagBuka, $finalTagPenutup) |
|
| 82 | 82 | { |
| 83 | 83 | $content = []; |
| 84 | 84 | foreach ($codeArray as $i => $line) { |
@@ -9,8 +9,8 @@ |
||
| 9 | 9 | $colsItem = self::extractLines($code, $type); |
| 10 | 10 | |
| 11 | 11 | foreach ($colsItem as &$item) { |
| 12 | - $item = str_replace(' ','', $item); |
|
| 13 | - $item = str_replace('\',]',']', $item); |
|
| 12 | + $item = str_replace(' ', '', $item); |
|
| 13 | + $item = str_replace('\',]', ']', $item); |
|
| 14 | 14 | $item = trim($item); |
| 15 | 15 | $item = trim($item, '['); |
| 16 | 16 | $item = trim($item, '];'); |
@@ -61,7 +61,7 @@ |
||
| 61 | 61 | $columnScript[] = ' $this->col[] = [];'; |
| 62 | 62 | foreach ($labels as $i => $label) { |
| 63 | 63 | |
| 64 | - if (! $name[$i]) { |
|
| 64 | + if (!$name[$i]) { |
|
| 65 | 65 | continue; |
| 66 | 66 | } |
| 67 | 67 | |