Arquivos
wMind/mind3rd/API/programs/SetUse.php
T
Felipe Nascimento de Moura aa8e451a58 - Refactor of all the MindCommand class
- Rebuilt of all programs to use the pattern of the new format designed for the new MindCommand class
2011-04-15 23:32:55 -03:00

42 linhas
1.2 KiB
PHP
Arquivo Executável

<?php
use Symfony\Component\Console\Input\InputArgument,
Symfony\Component\Console\Input\InputOption,
Symfony\Component\Console;
/**
* This class represents the program auth, receiving the user and
* may also receive the password. It will start your session
* allowing you to run the restricted programs
*
* @author Felipe Nascimento de Moura <felipenmoura@gmail.com>
*/
class SetUse extends MindCommand implements program
{
public $projectName= false;
public function __construct()
{
$this->setCommandName('use')
->setDescription('Opens the project, or specifies any personal option')
->setRestrict(true)
->setaction('action')
->setFileName('SetUse')
->setHelp(<<<EOT
You can use this command to start using a different language or project, for example
EOT
);
$this->addRequiredArgument('projectName', 'Specify the project name, you want to use/open');
$this->init();
}
public function action()
{
if(!$projectData= Mind::hasProject($this->projectName))
return false;
Mind::openProject($projectData);
return $this;
}
}