/**
  * Create a new model instance from a command.
  *
  * @param  CommandInterface
  * @return array
  */
 public static function fromCommand(CommandInterface $command)
 {
     $file = new self();
     $file->setParameters($command->getResponse()->json() + array('path' => $command['path']));
     $file->finishUpload();
     return $file->getParameters();
 }
Example #2
0
 /**
  * Returns a module parameter
  * @param	String $key The parameter key
  * @return String			The parameter value
  */
 public static function getParameter($key)
 {
     $module = new self();
     return $module->getParameters($key);
 }