API16

API16:JInstaller/pushStep

From Joomla! Documentation

Revision as of 01:48, 25 March 2017 by JoomlaWikiBot (talk | contribs) (preparing for archive only)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Pushes a step onto the installer stack for rolling back steps


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

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

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


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

Examples

Code Examples