PHP Class Prado\TShellApplication
TShellApplication is the base class for developing command-line PRADO
tools that share the same configurations as their Web application counterparts.
A typical usage of TShellApplication in a command-line PHP script is as follows:
require_once('path/to/prado.php');
$application=new TShellApplication('path/to/application.xml');
$application->run();
perform command-line tasks here
Since the application instance has access to all configurations, including
path aliases, modules and parameters, the command-line script has nearly the same
accessibility to resources as the PRADO Web applications.
Datei anzeigen
Open project: pradosoft/prado
Public Methods
Method |
Description |
|
run ( ) |
Runs the application. |
|
Method Details
This method overrides the parent implementation by initializing
application with configurations specified when it is created.