API16

JInstallerModule/refreshManifestCache

From Joomla! Documentation

< API16:JInstallerModule
Revision as of 17:42, 22 March 2010 by Doxiki (talk | contribs) (New page: <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {{Description:JI...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

[Edit Descripton]

Template:Description:JInstallerModule/refreshManifestCache

Syntax[edit]

refreshManifestCache()


Defined in[edit]

libraries/joomla/installer/adapters/module.php

Importing[edit]

jimport( 'joomla.installer.adapters.module' );

Source Body[edit]

function refreshManifestCache()
{
        $client = JApplicationHelper::getClientInfo($this->parent->extension->client_id);
        $manifestPath = $client->path . DS . 'modules'. DS . $this->parent->extension->element . DS . $this->parent->extension->element . '.xml';
        $this->parent->manifest = $this->parent->isManifest($manifestPath);
        $this->parent->setPath('manifest', $manifestPath);
        $manifest_details = JApplicationHelper::parseXMLInstallFile($this->parent->getPath('manifest'));
        $this->parent->extension->manifest_cache = serialize($manifest_details);
        $this->parent->extension->name = $manifest_details['name'];
        if ($this->parent->extension->store()) {
                return true;
        }
        else
        {
                JError::raiseWarning(101, JText::_('Module').' '.JText::_('Refresh Manifest Cache').': '.JText::_('Failed to store extension details'));
                return false;
        }
}

[Edit See Also] Template:SeeAlso:JInstallerModule/refreshManifestCache

Examples[edit]

<CodeExamplesForm />