当前位置: 首页>>代码示例>>PHP>>正文


PHP TemplatesHelper::parseXMLTemplateFiles方法代码示例

本文整理汇总了PHP中TemplatesHelper::parseXMLTemplateFiles方法的典型用法代码示例。如果您正苦于以下问题:PHP TemplatesHelper::parseXMLTemplateFiles方法的具体用法?PHP TemplatesHelper::parseXMLTemplateFiles怎么用?PHP TemplatesHelper::parseXMLTemplateFiles使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在TemplatesHelper的用法示例。


在下文中一共展示了TemplatesHelper::parseXMLTemplateFiles方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: viewTemplates

 /**
  * Compiles a list of installed, version 4.5+ templates
  *
  * Based on xml files found.  If no xml file found the template
  * is ignored
  */
 public static function viewTemplates()
 {
     global $mainframe, $option;
     // Initialize some variables
     $db =& JFactory::getDBO();
     $client =& JApplicationHelper::getClientInfo(JRequest::getVar('client', '0', '', 'int'));
     // Initialize the pagination variables
     $limit = $mainframe->getUserStateFromRequest('global.list.limit', 'limit', 20, 'int');
     $limitstart = $mainframe->getUserStateFromRequest($option . '.' . $client->id . '.limitstart', 'limitstart', 0, 'int');
     $select[] = JHTML::_('select.option', '0', JText::_('Site'));
     $select[] = JHTML::_('select.option', '1', JText::_('Administrator'));
     $lists['client'] = JHTML::_('select.genericlist', $select, 'client', 'class="inputbox" size="1" onchange="document.adminForm.submit();"', 'value', 'text', $client->id);
     $tBaseDir = $client->path . DS . 'templates';
     //get template xml file info
     $rows = array();
     $rows = TemplatesHelper::parseXMLTemplateFiles($tBaseDir);
     // set dynamic template information
     for ($i = 0; $i < count($rows); $i++) {
         $rows[$i]->assigned = TemplatesHelper::isTemplateAssigned($rows[$i]->directory);
         $rows[$i]->published = TemplatesHelper::isTemplateDefault($rows[$i]->directory, $client->id);
     }
     jimport('joomla.html.pagination');
     $page = new JPagination(count($rows), $limitstart, $limit);
     $rows = array_slice($rows, $page->limitstart, $page->limit);
     require_once JPATH_COMPONENT . DS . 'admin.templates.html.php';
     TemplatesView::showTemplates($rows, $lists, $page, $option, $client);
 }
开发者ID:stonyyi,项目名称:anahita,代码行数:33,代码来源:controller.php

示例2: fetchElement

 function fetchElement($name, $value, &$node, $control_name)
 {
     $size = $node->attributes('size');
     $multiple = $node->attributes('multiple');
     $subtemplates = $this->def($node->attributes('subtemplates'), 1);
     $control = $control_name . '[' . $name . ']';
     $attribs = 'class="inputbox"';
     if ($multiple) {
         if (!is_array($value)) {
             $value = explode(',', $value);
         }
         $attribs .= ' multiple="multiple"';
         $control .= '[]';
     }
     require_once JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_templates' . DS . 'helpers' . DS . 'template.php';
     $rows = TemplatesHelper::parseXMLTemplateFiles(JPATH_ROOT . DS . 'templates');
     $options = $this->createList($rows, JPATH_ROOT . DS . 'templates', $subtemplates);
     if ($size) {
         $attribs .= ' size="' . $size . '"';
     } else {
         $attribs .= ' size="' . (count($options) > 10 ? 10 : count($options)) . '"';
     }
     $list = JHTML::_('select.genericlist', $options, $control, $attribs, 'value', 'text', $value, $control_name . $name);
     return $list;
 }
开发者ID:bizanto,项目名称:Hooked,代码行数:25,代码来源:templates.php

示例3: fetchElement

 function fetchElement($name, $value, &$node, $control_name)
 {
     include_once JPATH_ADMINISTRATOR . '/components/com_templates/helpers/template.php';
     $template_path = JPATH_ADMINISTRATOR . '/templates';
     $templates = TemplatesHelper::parseXMLTemplateFiles($template_path);
     $options = array();
     $options[] = JHTML::_('select.option', '', JText::_('DEFAULT'));
     foreach ($templates as $t) {
         $options[] = JHTML::_('select.option', $t->directory, $t->name);
     }
     return JHTML::_('select.genericlist', $options, '' . $control_name . '[' . $name . '][]', 'class="inputbox"', 'value', 'text', $value);
 }
开发者ID:Simarpreet05,项目名称:joomla,代码行数:12,代码来源:admintemplate.php

示例4: getInput

 function getInput($name, $id, $value, $params, $children, $j15 = 0)
 {
     $this->params = $params;
     $size = (int) $this->def('size');
     $multiple = $this->def('multiple');
     $subtemplates = $this->def('subtemplates', 1);
     $show_system = $this->def('show_system', 1);
     if ($j15) {
         require_once JPATH_ADMINISTRATOR . '/components/com_templates/helpers/template.php';
         $rows = TemplatesHelper::parseXMLTemplateFiles(JPATH_ROOT . '/templates');
         $options = $this->createList15($rows, JPATH_ROOT . '/templates', $subtemplates, $show_system);
     } else {
         require_once JPATH_ADMINISTRATOR . '/components/com_templates/helpers/templates.php';
         $rows = TemplatesHelper::getTemplateOptions('0');
         $options = $this->createList($rows, JPATH_ROOT . '/templates', $subtemplates, $show_system);
     }
     require_once JPATH_PLUGINS . '/system/nnframework/helpers/html.php';
     return nnHTML::selectlist($options, $name, $value, $id, $size, $multiple, 0, $j15);
 }
开发者ID:andreassetiawanhartanto,项目名称:PDKKI,代码行数:19,代码来源:templates.php

示例5: renderTemplateList

 /**
  * Creates the chooseable template list
  *
  * @author Max Milbers, impleri
  *
  * @param string defaultText Text for the empty option
  * @param boolean defaultOption you can supress the empty otion setting this to false
  * return array of Template objects
  */
 public static function renderTemplateList($defaultText = 0, $defaultOption = TRUE)
 {
     if (empty($defaultText)) {
         $defaultText = JText::_('COM_VIRTUEMART_TEMPLATE_DEFAULT');
     }
     $defaulttemplate = array();
     if ($defaultOption) {
         $defaulttemplate[0] = new stdClass();
         $defaulttemplate[0]->name = $defaultText;
         $defaulttemplate[0]->directory = 0;
         $defaulttemplate[0]->value = 'default';
     }
     if (JVM_VERSION === 1) {
         if (!class_exists('TemplatesHelper')) {
             require JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_templates' . DS . 'helpers' . DS . 'template.php';
         }
         $jtemplates = TemplatesHelper::parseXMLTemplateFiles(JPATH_SITE . DS . 'templates');
         foreach ($jtemplates as $key => $template) {
             $template->value = $template->name;
         }
     } else {
         $q = 'SELECT * FROM `#__template_styles` WHERE `client_id`="0"';
         $db = JFactory::getDbo();
         $db->setQuery($q);
         $jtemplates = $db->loadObjectList();
         foreach ($jtemplates as $key => $template) {
             $template->name = $template->title;
             $template->value = $template->id;
             $template->directory = $template->template;
         }
     }
     return array_merge($defaulttemplate, $jtemplates);
 }
开发者ID:Roma48,项目名称:abazherka_old,代码行数:42,代码来源:shopfunctions.php

示例6: getListsAdmin

 function getListsAdmin($filters)
 {
     $db =& JFactory::getDBO();
     $client =& JApplicationHelper::getClientInfo(JRequest::getVar('client', '0', '', 'int'));
     // get list of Positions for dropdown filter
     $query = 'SELECT m.position AS value, m.position AS text' . ' FROM #__modules as m' . ' WHERE m.client_id = ' . (int) $client->id . ' GROUP BY m.position' . ' ORDER BY m.position';
     $db->setQuery($query);
     $options[] = JHTML::_('select.option', '0', '- ' . JText::_('Position') . ' -');
     $options = array_merge($options, $db->loadObjectList());
     $lists['position'] = JHTML::_('select.genericlist', $options, 'filter_position', 'class="inputbox" size="1" onchange="this.form.submit()"', 'value', 'text', "{$filters->position}");
     // get list of Types for dropdown filter
     $query = 'SELECT module AS value, module AS text' . ' FROM #__modules' . ' WHERE client_id = ' . (int) $client->id . ' GROUP BY module' . ' ORDER BY module';
     $db->setQuery($query);
     $options = array(JHTML::_('select.option', '0', '- ' . JText::_('Type') . ' -'));
     $options = array_merge($options, $db->loadObjectList());
     $lists['type'] = JHTML::_('select.genericlist', $options, 'filter_type', 'class="inputbox" size="1" onchange="this.form.submit()"', 'value', 'text', "{$filters->type}");
     // state filter
     $lists['state'] = JHTML::_('grid.state', $filters->state);
     // state access
     if (true || $client->id == 1) {
         // Administrator modules
         $query = 'SELECT id AS value, name AS text' . ' FROM #__groups' . ' ORDER BY id';
         $db->setQuery($query);
         $options = array(JHTML::_('select.option', '', '- ' . JText::_('AMM_ACCESS_LEVEL') . ' -'));
         $options = array_merge($options, $db->loadObjectList());
         $lists['access'] = JHTML::_('select.genericlist', $options, 'filter_access', 'class="inputbox" size="1" onchange="this.form.submit()"', 'value', 'text', $filters->access);
     } else {
         // TODO: ... still have to think about this!
         // Site modules
         $options = array();
         $options[] = JHTML::_('select.option', '', '- ' . JText::_('AMM_ACCESS_LEVEL') . ' -');
         $options[] = JHTML::_('select.option', '0', JText::_('NN_NOT_REGISTERED') . ' / ' . JText::_('NN_LOGGED_IN'));
         $acl =& JFactory::getACL();
         $options = array_merge($options, $acl->get_group_children_tree(null, 'USERS', 0));
         $lists['access'] = JHTML::_('select.genericlist', $options, 'filter_access_adv', 'class="inputbox" size="1" onchange="this.form.submit()"', 'value', 'text', $filters->access_adv);
     }
     // template assignment filter
     if (true || $client->id == 1) {
         // Administrator modules
         $query = 'SELECT DISTINCT( template ) AS text, template AS value' . ' FROM #__templates_menu' . ' WHERE client_id = ' . (int) $client->id;
         $db->setQuery($query);
         $options = array();
         $options[] = JHTML::_('select.option', '0', '- ' . JText::_('Template') . ' -');
         $options = array_merge($options, $db->loadObjectList());
         $lists['template'] = JHTML::_('select.genericlist', $options, 'filter_template', 'class="inputbox" size="1" onchange="this.form.submit()"', 'value', 'text', "{$filters->template}");
     } else {
         // TODO: ... still have to think about this!
         // Site modules
         require_once JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_templates' . DS . 'helpers' . DS . 'template.php';
         $templates = array();
         $templates = TemplatesHelper::parseXMLTemplateFiles(JPATH_ROOT . DS . 'templates');
         $options = array();
         $options[] = JHTML::_('select.option', '0', '- ' . JText::_('Template') . ' -');
         foreach ($templates as $template) {
             $options[] = JHTML::_('select.option', $template->directory, $template->name);
         }
         $lists['template'] = JHTML::_('select.genericlist', $options, 'filter_template', 'class="inputbox" size="1" onchange="this.form.submit()"', 'value', 'text', "{$filters->template}");
     }
     // template assignment filter
     $query = 'SELECT DISTINCT( template ) AS text, template AS value' . ' FROM #__templates_menu' . ' WHERE client_id = ' . (int) $client->id;
     $db->setQuery($query);
     // get list of Menu Item Assignments for dropdown filter
     // load the list of menu types
     $query = 'SELECT menutype, title' . ' FROM #__menu_types' . ' ORDER BY title';
     $db->setQuery($query);
     $menuTypes = $db->loadObjectList();
     $query = 'SELECT m.id, m.parent, m.name, m.menutype, m.type, m.published, mm.moduleid as assignment' . ' FROM #__menu as m' . ' LEFT JOIN #__modules_menu AS mm ON mm.menuid = m.id' . ' WHERE m.published != -2' . ' GROUP BY m.id' . ' ORDER BY m.menutype, m.parent, m.ordering';
     $db->setQuery($query);
     $menuItems = $db->loadObjectList();
     // establish the hierarchy of the menu
     $children = array();
     if ($menuItems) {
         // first pass - collect children
         foreach ($menuItems as $v) {
             $pt = $v->parent;
             $list = @$children[$pt] ? $children[$pt] : array();
             array_push($list, $v);
             $children[$pt] = $list;
         }
     }
     // second pass - get an indent list of the items
     require_once JPATH_LIBRARIES . DS . 'joomla' . DS . 'html' . DS . 'html' . DS . 'menu.php';
     $list = JHTMLMenu::treerecurse(0, '', array(), $children, 9999, 0, 0);
     // assemble into menutype groups
     $n = count($list);
     $groupedList = array();
     foreach ($list as $k => $v) {
         $groupedList[$v->menutype][] =& $list[$k];
     }
     // assemble menu items to the array
     $options = array();
     $options[] = JHTML::_('select.option', '', '- ' . JText::_('AMM_MENU_ITEM_ASSIGNMENT') . ' -');
     $options[] = JHTML::_('select.option', 'all', JText::_('All'));
     $options[] = JHTML::_('select.option', 'none', JText::_('None'));
     $options[] = JHTML::_('select.option', 'varies', JText::_('Varies'));
     $options[] = JHTML::_('select.option', '-', '----------------------------------------', 'value', 'text', true);
     $count = 0;
     foreach ($menuTypes as $type) {
         if (isset($groupedList[$type->menutype])) {
             if ($count > 0) {
//.........这里部分代码省略.........
开发者ID:jtresca,项目名称:nysurveyor,代码行数:101,代码来源:controller.php

示例7: listing


//.........这里部分代码省略.........
                             $obj->type = 'component';
                             $obj->type_name = $component;
                             $obj->file = substr($file, 0, strlen($file) - 4);
                             $clientTemplates[] = $obj;
                         }
                     }
                 }
             }
         }
         if ($client_id == 0 && $component == HIKASHOP_COMPONENT) {
             $plugins_folder = rtrim(JPATH_PLUGINS, DS) . DS . 'hikashoppayment';
             if (Jfolder::exists($plugins_folder)) {
                 $files = Jfolder::files($plugins_folder);
                 foreach ($files as $file) {
                     if (preg_match('#^.*_(?!configuration).*\\.php$#', $file)) {
                         $obj = new stdClass();
                         $obj->path = $plugins_folder . DS . $file;
                         $obj->filename = $file;
                         $obj->folder = $plugins_folder;
                         $obj->client_id = $client_id;
                         $obj->type = 'plugin';
                         $obj->view = '';
                         $obj->type_name = 'hikashoppayment';
                         $obj->file = substr($file, 0, strlen($file) - 4);
                         $clientTemplates[] = $obj;
                     }
                 }
             }
         }
         if (!empty($clientTemplates)) {
             $client = JApplicationHelper::getClientInfo($client_id);
             $tBaseDir = $client->path . DS . 'templates';
             if (version_compare(JVERSION, '1.6', '<')) {
                 $joomlaTemplates = TemplatesHelper::parseXMLTemplateFiles($tBaseDir);
             } else {
                 $query = 'SELECT * FROM ' . hikashop_table('extensions', false) . ' WHERE type=\'template\' AND client_id=' . (int) $client_id;
                 $db = JFactory::getDBO();
                 $db->setQuery($query);
                 $joomlaTemplates = $db->loadObjectList();
                 foreach ($joomlaTemplates as $k => $v) {
                     $joomlaTemplates[$k]->assigned = $joomlaTemplates[$k]->protected;
                     $joomlaTemplates[$k]->published = $joomlaTemplates[$k]->enabled;
                     $joomlaTemplates[$k]->directory = $joomlaTemplates[$k]->element;
                 }
             }
             for ($i = 0; $i < count($joomlaTemplates); $i++) {
                 if (version_compare(JVERSION, '1.6', '<')) {
                     $joomlaTemplates[$i]->assigned = TemplatesHelper::isTemplateAssigned($joomlaTemplates[$i]->directory);
                     $joomlaTemplates[$i]->published = TemplatesHelper::isTemplateDefault($joomlaTemplates[$i]->directory, $client->id);
                 }
                 if ($joomlaTemplates[$i]->published || $joomlaTemplates[$i]->assigned) {
                     if (!empty($pageInfo->filter->template) && $joomlaTemplates[$i]->directory != $pageInfo->filter->template) {
                         continue;
                     }
                     $templateValues[$joomlaTemplates[$i]->directory] = $joomlaTemplates[$i]->directory;
                     $templateFolder = $tBaseDir . DS . $joomlaTemplates[$i]->directory . DS;
                     foreach ($clientTemplates as $template) {
                         $templatePerJoomlaTemplate = clone $template;
                         $templatePerJoomlaTemplate->template = $joomlaTemplates[$i]->directory;
                         $templatePerJoomlaTemplate->component = $component_name;
                         $templatePerJoomlaTemplate->override = $templateFolder . 'html' . DS . $template->type_name . DS;
                         if ($template->type == 'component') {
                             $templatePerJoomlaTemplate->override .= $template->view . DS;
                         }
                         $templatePerJoomlaTemplate->override .= $template->filename;
                         $templatePerJoomlaTemplate->overriden = false;
开发者ID:rodhoff,项目名称:MNW,代码行数:67,代码来源:view.html.php

示例8: getTemplateOptions

 protected function getTemplateOptions()
 {
     // Get the template-options
     if (MageBridgeHelper::isJoomla15()) {
         require_once JPATH_ADMINISTRATOR . '/components/com_templates/helpers/template.php';
         $options = TemplatesHelper::parseXMLTemplateFiles(JPATH_SITE . '/templates');
     } else {
         require_once JPATH_ADMINISTRATOR . '/components/com_templates/helpers/templates.php';
         $options = TemplatesHelper::getTemplateOptions(0);
     }
     // Construct an empty option
     $option = new stdClass();
     if (MageBridgeHelper::isJoomla15()) {
         $option->directory = null;
         $option->name = null;
     } else {
         $option->value = null;
         $option->text = null;
     }
     array_unshift($options, $option);
     // Return the options
     return $options;
 }
开发者ID:traveladviser,项目名称:magebridge-mirror,代码行数:23,代码来源:view.html.php

示例9: renderTemplateList

 /**
  * Creates the chooseable template list
  *
  * @author Max Milbers, impleri
  *
  * @param string defaultText Text for the empty option
  * @param boolean defaultOption you can supress the empty otion setting this to false
  * return array of Template objects
  */
 public static function renderTemplateList($defaultText = 0, $defaultOption = TRUE)
 {
     if (empty($defaultText)) {
         $defaultText = JText::_('COM_VIRTUEMART_TEMPLATE_DEFAULT');
     }
     $defaulttemplate = array();
     if ($defaultOption) {
         $defaulttemplate[0] = new stdClass();
         $defaulttemplate[0]->name = $defaultText;
         $defaulttemplate[0]->directory = 0;
         $defaulttemplate[0]->value = 'default';
     }
     if (JVM_VERSION === 1) {
         if (!class_exists('TemplatesHelper')) {
             require JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_templates' . DS . 'helpers' . DS . 'template.php';
         }
         $jtemplates = TemplatesHelper::parseXMLTemplateFiles(JPATH_SITE . DS . 'templates');
     } else {
         require_once JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_templates' . DS . 'helpers' . DS . 'templates.php';
         require_once JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_templates' . DS . 'models' . DS . 'templates.php';
         $templatesModel = new TemplatesModelTemplates();
         $jtemplates = $templatesModel->getItems();
     }
     foreach ($jtemplates as $key => $template) {
         $template->value = $template->name;
         if (JVM_VERSION === 2) {
             if ($template->client_id == '0') {
                 $template->directory = $template->element;
             } else {
                 unset($jtemplates[$key]);
             }
         }
     }
     return array_merge($defaulttemplate, $jtemplates);
 }
开发者ID:romuland,项目名称:khparts,代码行数:44,代码来源:shopfunctions.php


注:本文中的TemplatesHelper::parseXMLTemplateFiles方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。