API16

JInstallerLibrary/update: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Custom update method public boolean True on success 1.5 <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JInstallerLibrary/updat...
 
m removing red link to edit, no existant pages
Line 5: Line 5:


<span class="editsection" style="font-size:76%;">
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JInstallerLibrary/update|Edit Descripton]]<nowiki>]</nowiki>
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>
</span>


{{Description:JInstallerLibrary/update}}
<! removed transcluded page call, red link never existed >


===Syntax===
===Syntax===
Line 50: Line 50:


<span class="editsection" style="font-size:76%;">
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JInstallerLibrary/update|Edit See Also]]<nowiki>]</nowiki>
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>
</span>
{{SeeAlso:JInstallerLibrary/update}}
<! removed transcluded page call, red link never existed >


===Examples===
===Examples===
Line 65: Line 65:
  format= ,,,
  format= ,,,
</dpl>
</dpl>
[[Category:Archived pages API16]]

Revision as of 03:02, 14 May 2013

Description

Custom update method public boolean True on success 1.5


[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax

update()


Returns

boolean True on success

Defined in

libraries/joomla/installer/adapters/library.php

Importing

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

Source Body

function update()
{
        // since this is just files, an update removes old files
        // Get the extension manifest object
        $this->manifest = $this->parent->getManifest();

        // Set the extensions name
        $name = (string)$this->manifest->name;
        $name = JFilterInput::getInstance()->clean($name, 'string');
        $element = str_replace('.xml','',basename($this->parent->getPath('manifest')));
        $this->set('name', $name);
        $this->set('element', $element);
        $installer = new JInstaller(); // we don't want to compromise this instance!
        $db = &$this->parent->getDbo();
        $db->setQuery('SELECT extension_id FROM #__extensions WHERE type="library" AND element = "'. $element .'"');
        $result = $db->loadResult();
        if ($result) {
                // already installed, which would make sense
                $installer->uninstall('library', $result);
        }
        // now create the new files
        return $this->install();
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

<CodeExamplesForm />