/**
  * (non-PHPdoc)
  * 
  * @see taoTests_models_classes_TestModel::getAuthoring()
  */
 public function getAuthoring(core_kernel_classes_Resource $content)
 {
     common_Logger::i('Generating form for delivery content ' . $content->getUri());
     $widget = new Renderer($this->extension->getConstant('DIR_VIEWS') . 'templates' . DIRECTORY_SEPARATOR . 'authoring.tpl');
     $form = new taoSimpleDelivery_actions_form_ContentForm($this->getClass(), $content);
     $widget->setData('formContent', $form->getForm()->render());
     $widget->setData('saveUrl', _url('save', 'Authoring', 'taoSimpleDelivery'));
     $widget->setData('formId', $form->getForm()->getName());
     return $widget->render();
 }
 /**
  * Helper to find all controllers
  * 
  * @param \common_ext_Extension $extension
  * @return array
  * @ignore
  */
 private function getControllerClasses(\common_ext_Extension $extension)
 {
     $returnValue = array();
     // routes
     $namespaces = array();
     foreach ($extension->getManifest()->getRoutes() as $mapedPath => $ns) {
         $namespaces[] = trim($ns, '\\');
     }
     if (!empty($namespaces)) {
         common_Logger::t('Namespace found in routes for extension ' . $extension->getId());
         $classes = array();
         $recDir = new RecursiveDirectoryIterator($extension->getDir());
         $recIt = new RecursiveIteratorIterator($recDir);
         $regexIt = new RegexIterator($recIt, '/^.+\\.php$/i', RecursiveRegexIterator::GET_MATCH);
         foreach ($regexIt as $entry) {
             $info = helpers_PhpTools::getClassInfo($entry[0]);
             if (!empty($info['ns'])) {
                 $ns = trim($info['ns'], '\\');
                 if (!empty($info['ns']) && in_array($ns, $namespaces)) {
                     $returnValue[$info['class']] = $ns . '\\' . $info['class'];
                 }
             }
         }
     }
     // legacy
     if ($extension->hasConstant('DIR_ACTIONS') && file_exists($extension->getConstant('DIR_ACTIONS'))) {
         $dir = new DirectoryIterator($extension->getConstant('DIR_ACTIONS'));
         foreach ($dir as $fileinfo) {
             if (preg_match('/^class\\.[^.]*\\.php$/', $fileinfo->getFilename())) {
                 $module = substr($fileinfo->getFilename(), 6, -4);
                 $returnValue[$module] = $extension->getId() . '_actions_' . $module;
             }
         }
     }
     // validate the classes
     foreach (array_keys($returnValue) as $key) {
         $class = $returnValue[$key];
         if (!class_exists($class)) {
             common_Logger::w($class . ' not found');
             unset($returnValue[$key]);
         } elseif (!is_subclass_of($class, 'Module')) {
             common_Logger::w($class . ' does not inherit Module');
             unset($returnValue[$key]);
         } else {
             // abstract so just move along
             $reflection = new \ReflectionClass($class);
             if ($reflection->isAbstract()) {
                 unset($returnValue[$key]);
             }
         }
     }
     return (array) $returnValue;
 }
Example #3
0
 /**
  * Helper to find all controllers
  * 
  * @param \common_ext_Extension $extension
  * @return array
  * @ignore
  */
 private function getControllerClasses(\common_ext_Extension $extension)
 {
     $returnValue = array();
     // routes
     $namespaces = array();
     foreach ($extension->getManifest()->getRoutes() as $mapedPath => $ns) {
         if (is_string($ns)) {
             $namespaces[] = trim($ns, '\\');
         }
     }
     if (!empty($namespaces)) {
         common_Logger::t('Namespace found in routes for extension ' . $extension->getId());
         $classes = array();
         $recDir = new RecursiveDirectoryIterator($extension->getDir());
         $recIt = new RecursiveIteratorIterator($recDir);
         $regexIt = new RegexIterator($recIt, '/^.+\\.php$/i', RecursiveRegexIterator::GET_MATCH);
         foreach ($regexIt as $entry) {
             $info = helpers_PhpTools::getClassInfo($entry[0]);
             if (!empty($info['ns'])) {
                 $ns = trim($info['ns'], '\\');
                 if (!empty($info['ns']) && in_array($ns, $namespaces)) {
                     $returnValue[$info['class']] = $ns . '\\' . $info['class'];
                 }
             }
         }
     }
     // legacy
     if ($extension->hasConstant('DIR_ACTIONS') && file_exists($extension->getConstant('DIR_ACTIONS'))) {
         $dir = new DirectoryIterator($extension->getConstant('DIR_ACTIONS'));
         foreach ($dir as $fileinfo) {
             if (preg_match('/^class\\.[^.]*\\.php$/', $fileinfo->getFilename())) {
                 $module = substr($fileinfo->getFilename(), 6, -4);
                 $returnValue[$module] = $extension->getId() . '_actions_' . $module;
             }
         }
     }
     $returnValue = array_filter($returnValue, array($this, 'isControllerClassNameValid'));
     return (array) $returnValue;
 }