API16:JInstallerTemplate/discover
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Discover existing but uninstalled templates Array JExtensionTable list
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
discover()
Returns
Array JExtensionTable list
Defined in
libraries/joomla/installer/adapters/template.php
Importing
jimport( 'joomla.installer.adapters.template' );
Source Body
function discover() { $results = Array(); $site_list = JFolder::folders(JPATH_SITE.DS.'templates'); $admin_list = JFolder::folders(JPATH_ADMINISTRATOR.DS.'templates'); $site_info = JApplicationHelper::getClientInfo('site', true); $admin_info = JApplicationHelper::getClientInfo('administrator', true); foreach ($site_list as $template) { if ($template == 'system') { continue; // ignore special system template } $extension = &JTable::getInstance('extension'); $extension->set('type', 'template'); $extension->set('client_id', $site_info->id); $extension->set('element', $template); $extension->set('name', $template); $extension->set('state', -1); $results[] = $extension; } foreach ($admin_list as $template) { if ($template == 'system') { continue; // ignore special system template } $extension = &JTable::getInstance('extension'); $extension->set('type', 'template'); $extension->set('client_id', $admin_info->id); $extension->set('element', $template); $extension->set('name', $template); $extension->set('state', -1); $results[] = $extension; } return $results; }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
