@@ -47,10 +47,11 @@ |
||
| 47 | 47 | $itemGenerator = new $generator($module); |
| 48 | 48 | $returnedFiles = $itemGenerator->generate(); |
| 49 | 49 | |
| 50 | - if (!is_array($returnedFiles)) |
|
| 51 | - $generatedFiles[] = $returnedFiles; |
|
| 52 | - else |
|
| 53 | - $generatedFiles = array_merge($generatedFiles, $returnedFiles); |
|
| 50 | + if (!is_array($returnedFiles)) { |
|
| 51 | + $generatedFiles[] = $returnedFiles; |
|
| 52 | + } else { |
|
| 53 | + $generatedFiles = array_merge($generatedFiles, $returnedFiles); |
|
| 54 | + } |
|
| 54 | 55 | |
| 55 | 56 | $bar->advance(); |
| 56 | 57 | } |
@@ -73,7 +73,7 @@ |
||
| 73 | 73 | } |
| 74 | 74 | } |
| 75 | 75 | |
| 76 | - protected function configToGenerators($array){ |
|
| 76 | + protected function configToGenerators($array) { |
|
| 77 | 77 | $generators = []; |
| 78 | 78 | foreach ($array as $ns => $items) { |
| 79 | 79 | foreach ($items as $item) { |
@@ -52,8 +52,12 @@ |
||
| 52 | 52 | $schema = $this->processSpecialSchema(); |
| 53 | 53 | } else { |
| 54 | 54 | foreach ($this->optionArray as $option) { |
| 55 | - if ($option == self::COLUMN_UNIQUE) $this->hasUnique(); |
|
| 56 | - if (is_numeric($option) && $option <= 2048) $this->hasSize((int) $option); |
|
| 55 | + if ($option == self::COLUMN_UNIQUE) { |
|
| 56 | + $this->hasUnique(); |
|
| 57 | + } |
|
| 58 | + if (is_numeric($option) && $option <= 2048) { |
|
| 59 | + $this->hasSize((int) $option); |
|
| 60 | + } |
|
| 57 | 61 | } |
| 58 | 62 | |
| 59 | 63 | $schema = '$table->'.$this->getType()."('{$this->column}'"; |
@@ -55,10 +55,11 @@ |
||
| 55 | 55 | |
| 56 | 56 | public function getForeignColumns($type = 'all') |
| 57 | 57 | { |
| 58 | - if (is_array($type)) |
|
| 59 | - $types = $type; |
|
| 60 | - else |
|
| 61 | - $types = ($type == "all") ? ['parent', 'related'] : [$type]; |
|
| 58 | + if (is_array($type)) { |
|
| 59 | + $types = $type; |
|
| 60 | + } else { |
|
| 61 | + $types = ($type == "all") ? ['parent', 'related'] : [$type]; |
|
| 62 | + } |
|
| 62 | 63 | |
| 63 | 64 | $data = []; |
| 64 | 65 | foreach ($this->data as $column => $optionString) { |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | $data = ['S.N.']; |
| 35 | 35 | foreach ($this->data as $column => $optionString) { |
| 36 | 36 | $optionArray = explode(':', $optionString); |
| 37 | - if (in_array($optionArray[0], ['string', 'int'])&&in_array($column, ['title', 'firstname', 'lastname', 'name'])) { |
|
| 37 | + if (in_array($optionArray[0], ['string', 'int']) && in_array($column, ['title', 'firstname', 'lastname', 'name'])) { |
|
| 38 | 38 | $data[] = ucwords($column); |
| 39 | 39 | } |
| 40 | 40 | } |
@@ -51,10 +51,10 @@ discard block |
||
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | public function initializeFile($fullFilePath, $stub, $initializeWithText = false) { |
| 54 | - if(file_exists($fullFilePath)){ |
|
| 54 | + if (file_exists($fullFilePath)) { |
|
| 55 | 55 | $this->fileSystem->remove($fullFilePath); |
| 56 | 56 | } |
| 57 | - $seederTemplate = ($initializeWithText===false) ? $this->buildTemplate($stub) : $initializeWithText; |
|
| 57 | + $seederTemplate = ($initializeWithText === false) ? $this->buildTemplate($stub) : $initializeWithText; |
|
| 58 | 58 | $this->fileSystem->dumpFile($fullFilePath, $seederTemplate); |
| 59 | 59 | return $fullFilePath; |
| 60 | 60 | } |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | public function insertIntoFile($file_path, $insert_marker, $text, $after = true) { |
| 79 | - $contents = str_replace("\r",'', file_get_contents($file_path)); |
|
| 79 | + $contents = str_replace("\r", '', file_get_contents($file_path)); |
|
| 80 | 80 | $new_contents = ($after) ? str_replace($insert_marker, $insert_marker.$text, $contents) : str_replace($insert_marker, $text.$insert_marker, $contents); |
| 81 | 81 | $this->fileSystem->dumpFile($file_path, $new_contents); |
| 82 | 82 | } |
@@ -39,8 +39,9 @@ |
||
| 39 | 39 | { |
| 40 | 40 | $dir = base_path($path); |
| 41 | 41 | |
| 42 | - if (!is_dir($dir)) |
|
| 43 | - $this->fileSystem->mkdir($dir, 0755); |
|
| 42 | + if (!is_dir($dir)) { |
|
| 43 | + $this->fileSystem->mkdir($dir, 0755); |
|
| 44 | + } |
|
| 44 | 45 | |
| 45 | 46 | return $dir; |
| 46 | 47 | } |
@@ -5,19 +5,19 @@ |
||
| 5 | 5 | |
| 6 | 6 | class FileSystem extends SymphonyFilesystem |
| 7 | 7 | {
|
| 8 | - public function clone($src, $dest){
|
|
| 9 | - $src = $this->getFullSourcePath($src); |
|
| 8 | + public function clone($src, $dest){
|
|
| 9 | + $src = $this->getFullSourcePath($src); |
|
| 10 | 10 | |
| 11 | - $dest = base_path($dest); |
|
| 11 | + $dest = base_path($dest); |
|
| 12 | 12 | |
| 13 | - if (is_dir($src)) {
|
|
| 14 | - $this->mirror($src, $dest."/".basename($src)); |
|
| 15 | - }else{
|
|
| 16 | - $this->copy($src, $dest); |
|
| 17 | - } |
|
| 18 | - } |
|
| 13 | + if (is_dir($src)) {
|
|
| 14 | + $this->mirror($src, $dest."/".basename($src)); |
|
| 15 | + }else{
|
|
| 16 | + $this->copy($src, $dest); |
|
| 17 | + } |
|
| 18 | + } |
|
| 19 | 19 | |
| 20 | - public function getFullSourcePath($path){
|
|
| 21 | - return realpath(__DIR__ . "/../resources/" . $path); |
|
| 22 | - } |
|
| 20 | + public function getFullSourcePath($path){
|
|
| 21 | + return realpath(__DIR__ . "/../resources/" . $path); |
|
| 22 | + } |
|
| 23 | 23 | } |
@@ -12,12 +12,12 @@ |
||
| 12 | 12 | |
| 13 | 13 | if (is_dir($src)) {
|
| 14 | 14 | $this->mirror($src, $dest."/".basename($src)); |
| 15 | - }else{
|
|
| 15 | + } else {
|
|
| 16 | 16 | $this->copy($src, $dest); |
| 17 | 17 | } |
| 18 | 18 | } |
| 19 | 19 | |
| 20 | - public function getFullSourcePath($path){
|
|
| 21 | - return realpath(__DIR__ . "/../resources/" . $path); |
|
| 20 | + public function getFullSourcePath($path) {
|
|
| 21 | + return realpath(__DIR__."/../resources/".$path); |
|
| 22 | 22 | } |
| 23 | 23 | } |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | |
| 13 | 13 | if (is_dir($src)) {
|
| 14 | 14 | $this->mirror($src, $dest."/".basename($src)); |
| 15 | - }else{
|
|
| 15 | + } else{
|
|
| 16 | 16 | $this->copy($src, $dest); |
| 17 | 17 | } |
| 18 | 18 | } |
@@ -8,13 +8,13 @@ discard block |
||
| 8 | 8 | {
|
| 9 | 9 | public function generate() |
| 10 | 10 | {
|
| 11 | - $viewsToBeGenerated = ['index']; // To be generated dynamically |
|
| 11 | + $viewsToBeGenerated = ['index']; // To be generated dynamically |
|
| 12 | 12 | |
| 13 | - $generatedFiles = []; |
|
| 13 | + $generatedFiles = []; |
|
| 14 | 14 | |
| 15 | 15 | foreach ($viewsToBeGenerated as $view) {
|
| 16 | 16 | $viewTemplate = $this->buildTemplate('Backend/Views/' . $view, [
|
| 17 | - '{{headings}}' => $this->getHeadings(),
|
|
| 17 | + '{{headings}}' => $this->getHeadings(),
|
|
| 18 | 18 | '{{modelNameLowercase}}' => str_singular($this->module->getModuleName()),
|
| 19 | 19 | '{{moduleName}}' => $this->module->getModuleName()
|
| 20 | 20 | ]); |
@@ -32,18 +32,18 @@ discard block |
||
| 32 | 32 | $this->insertIntoFile( |
| 33 | 33 | $mainMenuFile, |
| 34 | 34 | "{{-- Main Menu --}}",
|
| 35 | - "" |
|
| 36 | - ); |
|
| 35 | + "" |
|
| 36 | + ); |
|
| 37 | 37 | |
| 38 | 38 | return $generatedFiles; |
| 39 | - } |
|
| 39 | + } |
|
| 40 | 40 | |
| 41 | - public function getHeadings(){
|
|
| 41 | + public function getHeadings(){
|
|
| 42 | 42 | $columns = $this->module->getBackendColumnTitles(); |
| 43 | 43 | $headings= ""; |
| 44 | 44 | foreach ($columns as $column) {
|
| 45 | 45 | $headings .= "<th>".$column."</th>"; |
| 46 | 46 | } |
| 47 | - return $headings; |
|
| 48 | - } |
|
| 47 | + return $headings; |
|
| 48 | + } |
|
| 49 | 49 | } |
@@ -13,15 +13,15 @@ discard block |
||
| 13 | 13 | $generatedFiles = []; |
| 14 | 14 | |
| 15 | 15 | foreach ($viewsToBeGenerated as $view) {
|
| 16 | - $viewTemplate = $this->buildTemplate('Backend/Views/' . $view, [
|
|
| 16 | + $viewTemplate = $this->buildTemplate('Backend/Views/'.$view, [
|
|
| 17 | 17 | '{{headings}}' => $this->getHeadings(),
|
| 18 | 18 | '{{modelNameLowercase}}' => str_singular($this->module->getModuleName()),
|
| 19 | 19 | '{{moduleName}}' => $this->module->getModuleName()
|
| 20 | 20 | ]); |
| 21 | 21 | |
| 22 | - $fullFilePath = $this->getPath("resources/views/backend/" . $this->module->getModuleName()) . "/{$view}.blade.php";
|
|
| 22 | + $fullFilePath = $this->getPath("resources/views/backend/".$this->module->getModuleName())."/{$view}.blade.php";
|
|
| 23 | 23 | file_put_contents($fullFilePath, $viewTemplate); |
| 24 | - $generatedFiles[] = $fullFilePath; |
|
| 24 | + $generatedFiles[] = $fullFilePath; |
|
| 25 | 25 | } |
| 26 | 26 | |
| 27 | 27 | $mainMenuFile = $this->getPath("resources/views/backend/includes/")."main_menu.blade.php";
|
@@ -38,9 +38,9 @@ discard block |
||
| 38 | 38 | return $generatedFiles; |
| 39 | 39 | } |
| 40 | 40 | |
| 41 | - public function getHeadings(){
|
|
| 41 | + public function getHeadings() {
|
|
| 42 | 42 | $columns = $this->module->getBackendColumnTitles(); |
| 43 | - $headings= ""; |
|
| 43 | + $headings = ""; |
|
| 44 | 44 | foreach ($columns as $column) {
|
| 45 | 45 | $headings .= "<th>".$column."</th>"; |
| 46 | 46 | } |
@@ -17,10 +17,10 @@ |
||
| 17 | 17 | $fullFilePath = $this->getPath("app/Http/Requests/Backend/").$this->module->getModelName()."Request".".php";
|
| 18 | 18 | file_put_contents($fullFilePath, $controllerTemplate); |
| 19 | 19 | return $fullFilePath; |
| 20 | - } |
|
| 20 | + } |
|
| 21 | 21 | |
| 22 | - protected function getRules(){
|
|
| 23 | - // Todo |
|
| 24 | - return ""; |
|
| 25 | - } |
|
| 22 | + protected function getRules(){
|
|
| 23 | + // Todo |
|
| 24 | + return ""; |
|
| 25 | + } |
|
| 26 | 26 | } |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | return $fullFilePath; |
| 20 | 20 | } |
| 21 | 21 | |
| 22 | - protected function getRules(){
|
|
| 22 | + protected function getRules() {
|
|
| 23 | 23 | // Todo |
| 24 | 24 | return ""; |
| 25 | 25 | } |
@@ -38,8 +38,8 @@ discard block |
||
| 38 | 38 | $this->insertIntoFile( |
| 39 | 39 | $webRouteFile, |
| 40 | 40 | "<?php\n", |
| 41 | - "use App\\Http\\Controllers\\".$this->module->getModelName()."Controller;\n" |
|
| 42 | - ); |
|
| 41 | + "use App\\Http\\Controllers\\".$this->module->getModelName()."Controller;\n" |
|
| 42 | + ); |
|
| 43 | 43 | |
| 44 | 44 | $this->insertIntoFile( |
| 45 | 45 | $webRouteFile, |
@@ -47,13 +47,13 @@ discard block |
||
| 47 | 47 | "\n".$this->getTabs(1)."Route::resource('".$this->module->getModuleName()."', ".$this->module->getModelName()."Controller::class);"
|
| 48 | 48 | ); |
| 49 | 49 | |
| 50 | - $generatedFiles[] = $webRouteFile; |
|
| 50 | + $generatedFiles[] = $webRouteFile; |
|
| 51 | 51 | |
| 52 | 52 | $this->insertIntoFile( |
| 53 | 53 | $backendWebRouteFile, |
| 54 | 54 | "<?php\n", |
| 55 | - "use App\\Http\\Controllers\\Backend\\".$this->module->getModelName()."Controller;\n" |
|
| 56 | - ); |
|
| 55 | + "use App\\Http\\Controllers\\Backend\\".$this->module->getModelName()."Controller;\n" |
|
| 56 | + ); |
|
| 57 | 57 | |
| 58 | 58 | $this->insertIntoFile( |
| 59 | 59 | $backendWebRouteFile, |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | $webRouteFile = $this->getPath("routes/frontend/")."web.php";
|
| 18 | 18 | $backendWebRouteFile = $this->getPath("routes/backend/")."web.php";
|
| 19 | 19 | |
| 20 | - if(self::$initializeFlag++ == 0){
|
|
| 20 | + if (self::$initializeFlag++ == 0) {
|
|
| 21 | 21 | $this->initializeFiles([ |
| 22 | 22 | $webRouteFile => "Route", |
| 23 | 23 | $backendAuthRouteFile => "Routes/Backend-auth", |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | |
| 44 | 44 | $this->insertIntoFile( |
| 45 | 45 | $webRouteFile, |
| 46 | - "/" . "* Insert your routes here */", |
|
| 46 | + "/"."* Insert your routes here */", |
|
| 47 | 47 | "\n".$this->getTabs(1)."Route::resource('".$this->module->getModuleName()."', ".$this->module->getModelName()."Controller::class);"
|
| 48 | 48 | ); |
| 49 | 49 | |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | |
| 58 | 58 | $this->insertIntoFile( |
| 59 | 59 | $backendWebRouteFile, |
| 60 | - "/" . "* Insert your routes here */", |
|
| 60 | + "/"."* Insert your routes here */", |
|
| 61 | 61 | "\n".$this->getTabs(1)."Route::resource('".$this->module->getModuleName()."', ".$this->module->getModelName()."Controller::class);"
|
| 62 | 62 | ); |
| 63 | 63 | |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | file_put_contents($fullFilePath, $factoryTemplate); |
| 24 | 24 | $generatedFiles[] = $fullFilePath; |
| 25 | 25 | |
| 26 | - $laragenSeederFile = (self::$initializeFlag++ == 0) ? $this->initializeFile($this->getPath("database/seeds/")."LaragenSeeder.php", 'Seeder') : $this->getPath("database/seeds/")."LaragenSeeder.php"; |
|
| 26 | + $laragenSeederFile = (self::$initializeFlag++ == 0) ? $this->initializeFile($this->getPath("database/seeds/")."LaragenSeeder.php", 'Seeder') : $this->getPath("database/seeds/")."LaragenSeeder.php"; |
|
| 27 | 27 | |
| 28 | 28 | $this->insertIntoFile( |
| 29 | 29 | $laragenSeederFile, |
@@ -93,23 +93,23 @@ discard block |
||
| 93 | 93 | |
| 94 | 94 | $dataDefinition = ""; |
| 95 | 95 | foreach ($this->module->getNativeData() as $columns) { |
| 96 | - foreach($columns as $column => $type){ |
|
| 96 | + foreach ($columns as $column => $type) { |
|
| 97 | 97 | $specialTypes = array_keys($specialTypesToDefinition); |
| 98 | - if(in_array($column,$specialTypes)){ |
|
| 99 | - $dataDefinition .= $this->getTabs(2) . "'{$column}'" . " => " . '$faker->' . $specialTypesToDefinition[$column]; |
|
| 100 | - } else{ |
|
| 101 | - $dataDefinition .= $this->getTabs(2) . "'{$column}'" . " => " . '$faker->' . $typeToDefinition[$type]; |
|
| 98 | + if (in_array($column, $specialTypes)) { |
|
| 99 | + $dataDefinition .= $this->getTabs(2)."'{$column}'"." => ".'$faker->'.$specialTypesToDefinition[$column]; |
|
| 100 | + } else { |
|
| 101 | + $dataDefinition .= $this->getTabs(2)."'{$column}'"." => ".'$faker->'.$typeToDefinition[$type]; |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | - if($column != last($columns)) { |
|
| 105 | - $dataDefinition .= "," . PHP_EOL; |
|
| 104 | + if ($column != last($columns)) { |
|
| 105 | + $dataDefinition .= ",".PHP_EOL; |
|
| 106 | 106 | } |
| 107 | 107 | } |
| 108 | 108 | } |
| 109 | 109 | return $dataDefinition; |
| 110 | 110 | } |
| 111 | 111 | |
| 112 | - protected function getForeignData(){ |
|
| 112 | + protected function getForeignData() { |
|
| 113 | 113 | $columns = $this->module->getForeignColumns('parent'); |
| 114 | 114 | |
| 115 | 115 | $foreignData = ""; |
@@ -121,8 +121,8 @@ discard block |
||
| 121 | 121 | '{{parentModel}}' => ucfirst(camel_case(str_singular($parent))) |
| 122 | 122 | ]); |
| 123 | 123 | |
| 124 | - if($column != last($columns)) { |
|
| 125 | - $foreignData .= "," . PHP_EOL; |
|
| 124 | + if ($column != last($columns)) { |
|
| 125 | + $foreignData .= ",".PHP_EOL; |
|
| 126 | 126 | } |
| 127 | 127 | } |
| 128 | 128 | } |