API16:JInstallerTemplate/discover
From Joomla! Documentation
Description
Discover existing but uninstalled templates Array JExtensionTable list
<! 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 transcluded page call, red link never existed >
Examples
Code Examples