setQuery($query); $defaultemplate = $db->loadResult(); if (JFolder::exists(JPATH_SITE.DS.'templates'.DS.$defaultemplate.DS.'html'.DS.'com_k2'.DS.'templates')) { $templatePath = JPATH_SITE.DS.'templates'.DS.$defaultemplate.DS.'html'.DS.'com_k2'.DS.'templates'; } else { $templatePath = JPATH_SITE.DS.'templates'.DS.$defaultemplate.DS.'html'.DS.'com_k2'; } if (JFolder::exists($templatePath)) { $templateFolders = JFolder::folders($templatePath); $folders = @array_merge($templateFolders, $componentFolders); $folders = @array_unique($folders); } else { $folders = $componentFolders; } $exclude = 'default'; $options = array(); foreach ($folders as $folder) { if (preg_match(chr(1).$exclude.chr(1), $folder)) { continue; } $options[] = JHTML::_('select.option', $folder, $folder); } array_unshift($options, JHTML::_('select.option', '', '-- '.JText::_('K2_USE_DEFAULT').' --')); return JHTML::_('select.genericlist', $options, $fieldName, 'class="inputbox"', 'value', 'text', $value, $control_name.$name); } } class JFormFieldTemplate extends K2ElementTemplate { var $type = 'template'; } class JElementTemplate extends K2ElementTemplate { var $_name = 'template'; }