API15

API15:JInstaller/pushStep

From Joomla! Documentation

Revision as of 22:23, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Pushes a step onto the installer stack for rolling back steps <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JInstaller/pushStep|E...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Pushes a step onto the installer stack for rolling back steps

[Edit Descripton]

Template:Description:JInstaller/pushStep

Syntax

pushStep($step)
Parameter Name Default Value Description
$step $step Installer step

Returns

void

Defined in

libraries/joomla/installer/installer.php

Importing

jimport( 'joomla.installer.installer' );

Source Body

function pushStep($step)
{
        $this->_stepStack[] = $step;
}

[Edit See Also] Template:SeeAlso:JInstaller/pushStep

Examples

<CodeExamplesForm />