PHP 클래스 Appzcoder\CrudGenerator\Commands\CrudViewCommand

상속: extends Illuminate\Console\Command
파일 보기 프로젝트 열기: appzcoder/crud-generator

보호된 프로퍼티들

프로퍼티 타입 설명
$crudName string Name of the Crud.
$crudNameCap string Crud Name in capital form.
$crudNameSingular string Crud Name in singular form.
$defaultColumnsToShow integer Number of columns to show from the table. Others are hidden.
$description string The console command description.
$formBodyHtml string Html of the form body.
$formBodyHtmlForShowView string Html of view to show.
$formFields array Form's fields.
$formFieldsHtml string Html of Form's fields.
$formHeadingHtml string Html of the form heading.
$modelName string Name of the Model.
$primaryKey string Primary key of the model.
$routeGroup string Name or prefix of the Route Group.
$signature string The name and signature of the console command.
$typeLookup array Form field types collection.
$viewDirectoryPath string View Directory Path.
$viewName string Name of the View Dir.

공개 메소드들

메소드 설명
__construct ( ) : void Create a new command instance.
handle ( ) : void Execute the console command.
templateCreateVars ( string $newCreateFile ) : void Update values between %% with real values in create view.
templateEditVars ( string $newEditFile ) : void Update values between %% with real values in edit view.
templateFormVars ( string $newFormFile ) : void Update values between %% with real values in form view.
templateIndexVars ( string $newIndexFile ) : void Update values between %% with real values in index view.
templateShowVars ( string $newShowFile ) : void Update values between %% with real values in show view.

보호된 메소드들

메소드 설명
createField ( array $item ) : string Form field generator.
createFormField ( array $item ) : string Create a specific field using the form helper.
createInputField ( array $item ) : string Create a generic input field using the form helper.
createPasswordField ( array $item ) : string Create a password field using the form helper.
createRadioField ( array $item ) : string Create a yes/no radio button group using the form helper.
createSelectField ( array $item ) : string Create a select field using the form helper.
wrapField ( string $item, string $field ) : void Form field wrapper.

메소드 상세

__construct() 공개 메소드

Create a new command instance.
public __construct ( ) : void
리턴 void

createField() 보호된 메소드

Form field generator.
protected createField ( array $item ) : string
$item array
리턴 string

createFormField() 보호된 메소드

Create a specific field using the form helper.
protected createFormField ( array $item ) : string
$item array
리턴 string

createInputField() 보호된 메소드

Create a generic input field using the form helper.
protected createInputField ( array $item ) : string
$item array
리턴 string

createPasswordField() 보호된 메소드

Create a password field using the form helper.
protected createPasswordField ( array $item ) : string
$item array
리턴 string

createRadioField() 보호된 메소드

Create a yes/no radio button group using the form helper.
protected createRadioField ( array $item ) : string
$item array
리턴 string

createSelectField() 보호된 메소드

Create a select field using the form helper.
protected createSelectField ( array $item ) : string
$item array
리턴 string

handle() 공개 메소드

Execute the console command.
public handle ( ) : void
리턴 void

templateCreateVars() 공개 메소드

Update values between %% with real values in create view.
public templateCreateVars ( string $newCreateFile ) : void
$newCreateFile string
리턴 void

templateEditVars() 공개 메소드

Update values between %% with real values in edit view.
public templateEditVars ( string $newEditFile ) : void
$newEditFile string
리턴 void

templateFormVars() 공개 메소드

Update values between %% with real values in form view.
public templateFormVars ( string $newFormFile ) : void
$newFormFile string
리턴 void

templateIndexVars() 공개 메소드

Update values between %% with real values in index view.
public templateIndexVars ( string $newIndexFile ) : void
$newIndexFile string
리턴 void

templateShowVars() 공개 메소드

Update values between %% with real values in show view.
public templateShowVars ( string $newShowFile ) : void
$newShowFile string
리턴 void

wrapField() 보호된 메소드

Form field wrapper.
protected wrapField ( string $item, string $field ) : void
$item string
$field string
리턴 void

프로퍼티 상세

$crudName 보호되어 있는 프로퍼티

Name of the Crud.
protected string $crudName
리턴 string

$crudNameCap 보호되어 있는 프로퍼티

Crud Name in capital form.
protected string $crudNameCap
리턴 string

$crudNameSingular 보호되어 있는 프로퍼티

Crud Name in singular form.
protected string $crudNameSingular
리턴 string

$defaultColumnsToShow 보호되어 있는 프로퍼티

Number of columns to show from the table. Others are hidden.
protected int $defaultColumnsToShow
리턴 integer

$description 보호되어 있는 프로퍼티

The console command description.
protected string $description
리턴 string

$formBodyHtml 보호되어 있는 프로퍼티

Html of the form body.
protected string $formBodyHtml
리턴 string

$formBodyHtmlForShowView 보호되어 있는 프로퍼티

Html of view to show.
protected string $formBodyHtmlForShowView
리턴 string

$formFields 보호되어 있는 프로퍼티

Form's fields.
protected array $formFields
리턴 array

$formFieldsHtml 보호되어 있는 프로퍼티

Html of Form's fields.
protected string $formFieldsHtml
리턴 string

$formHeadingHtml 보호되어 있는 프로퍼티

Html of the form heading.
protected string $formHeadingHtml
리턴 string

$modelName 보호되어 있는 프로퍼티

Name of the Model.
protected string $modelName
리턴 string

$primaryKey 보호되어 있는 프로퍼티

Primary key of the model.
protected string $primaryKey
리턴 string

$routeGroup 보호되어 있는 프로퍼티

Name or prefix of the Route Group.
protected string $routeGroup
리턴 string

$signature 보호되어 있는 프로퍼티

The name and signature of the console command.
protected string $signature
리턴 string

$typeLookup 보호되어 있는 프로퍼티

Form field types collection.
protected array $typeLookup
리턴 array

$viewDirectoryPath 보호되어 있는 프로퍼티

View Directory Path.
protected string $viewDirectoryPath
리턴 string

$viewName 보호되어 있는 프로퍼티

Name of the View Dir.
protected string $viewName
리턴 string