Ejemplo n.º 1
0
 /**
  * Request a category be renamed
  *
  * @param $input
  */
 public function requestRename($input)
 {
     $path = array_get($input, 'path');
     $newName = array_get($input, 'newname');
     $this->CategoryManager->renameCategory($path, $newName);
 }