Method |
Description |
|
__construct ( Illuminate\Foundation\Application $app, $name, $path ) |
The constructor. |
|
__get ( $key ) : mixed |
Handle call to __get method. |
|
__toString ( ) : string |
Handle call __toString. |
|
active ( ) : boolean |
Alternate for "enabled" method. |
|
boot ( ) |
Bootstrap the application events. |
|
delete ( ) : boolean |
Delete the current module. |
|
disable ( ) : boolean |
Disable the current module. |
|
disabled ( ) : boolean |
Alias for "notActive" method. |
|
enable ( ) |
Enable the current module. |
|
enabled ( ) : boolean |
Determine whether the current module activated. |
|
get ( $key, null $default = null ) : mixed |
Get a specific data from json file by given the key. |
|
getAlias ( ) : string |
Get alias. |
|
getComposerAttr ( $key, null $default = null ) : mixed |
Get a specific data from composer.json file by given the key. |
|
getDescription ( ) : string |
Get description. |
|
getExtraPath ( $path ) : string |
Get extra path. |
|
getLaravel ( ) : Illuminate\Foundation\Application |
Get laravel instance. |
|
getLowerName ( ) : string |
Get name in lower case. |
|
getName ( ) : string |
Get name. |
|
getPath ( ) : string |
Get path. |
|
getPriority ( ) : string |
Get priority. |
|
getStudlyName ( ) : string |
Get name in studly case. |
|
isStatus ( $status ) : boolean |
Determine whether the given status same with the current module status. |
|
json ( $file = null ) : Json |
Get json contents. |
|
notActive ( ) : boolean |
Determine whether the current module not activated. |
|
register ( ) |
Register the module. |
|
setActive ( $active ) : boolean |
Set active state for current module. |
|
setPath ( string $path ) |
Set path. |
|