Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/../vendor/markbaker/../nette/./../myclabs/../egulias/../phpoption/../ralouphie/../myclabs/../paytm/../authorizenet/../fruitcake/../phpoffice/../async-aws/../nwidart/laravel-modules/src/Commands
الملفات الموجودة في هذا الـ Path:
.
..
CommandMakeCommand.php
ComponentClassMakeCommand.php
ComponentViewMakeCommand.php
ControllerMakeCommand.php
DisableCommand.php
DumpCommand.php
EnableCommand.php
EventMakeCommand.php
FactoryMakeCommand.php
GeneratorCommand.php
InstallCommand.php
JobMakeCommand.php
LaravelModulesV6Migrator.php
ListCommand.php
ListenerMakeCommand.php
MailMakeCommand.php
MiddlewareMakeCommand.php
MigrateCommand.php
MigrateFreshCommand.php
MigrateRefreshCommand.php
MigrateResetCommand.php
MigrateRollbackCommand.php
MigrateStatusCommand.php
MigrationMakeCommand.php
ModelMakeCommand.php
ModelShowCommand.php
ModuleDeleteCommand.php
ModuleMakeCommand.php
NotificationMakeCommand.php
PolicyMakeCommand.php
ProviderMakeCommand.php
PublishCommand.php
PublishConfigurationCommand.php
PublishMigrationCommand.php
PublishTranslationCommand.php
RequestMakeCommand.php
ResourceMakeCommand.php
RouteProviderMakeCommand.php
RuleMakeCommand.php
SeedCommand.php
SeedMakeCommand.php
SetupCommand.php
TestMakeCommand.php
UnUseCommand.php
UpdateCommand.php
UseCommand.php
stubs

مشاهدة ملف: SetupCommand.php

<?php

namespace Nwidart\Modules\Commands;

use Illuminate\Console\Command;

class SetupCommand extends Command
{
    /**
     * The console command name.
     *
     * @var string
     */
    protected $name = 'module:setup';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Setting up modules folders for first use.';

    /**
     * Execute the console command.
     */
    public function handle(): int
    {
        $code = $this->generateModulesFolder();

        return $this->generateAssetsFolder() | $code;
    }

    /**
     * Generate the modules folder.
     */
    public function generateModulesFolder()
    {
        return $this->generateDirectory(
            $this->laravel['modules']->config('paths.modules'),
            'Modules directory created successfully',
            'Modules directory already exist'
        );
    }

    /**
     * Generate the assets folder.
     */
    public function generateAssetsFolder()
    {
        return $this->generateDirectory(
            $this->laravel['modules']->config('paths.assets'),
            'Assets directory created successfully',
            'Assets directory already exist'
        );
    }

    /**
     * Generate the specified directory by given $dir.
     *
     * @param $dir
     * @param $success
     * @param $error
     * @return int
     */
    protected function generateDirectory($dir, $success, $error): int
    {
        if (!$this->laravel['files']->isDirectory($dir)) {
            $this->laravel['files']->makeDirectory($dir, 0755, true, true);

            $this->components->info($success);

            return 0;
        }

        $this->components->error($error);

        return E_ERROR;
    }
}