Example #1
0
 /**
  * Constructor.
  * @see install.form.InstallForm for the expected parameters
  * @param $xmlDescriptor string descriptor path
  * @param $params array installer parameters
  * @param $isPlugin boolean true iff a plugin is being installed
  */
 function PKPInstall($xmlDescriptor, $params, $isPlugin)
 {
     parent::Installer($xmlDescriptor, $params, $isPlugin);
 }
Example #2
0
 /**
  * Constructor.
  * @param $params array upgrade parameters
  */
 function Upgrade($params, $installFile = 'upgrade.xml', $isPlugin = false)
 {
     parent::Installer($installFile, $params, $isPlugin);
 }
Example #3
0
 /**
  * Constructor.
  * @see install.form.InstallForm for the expected parameters
  * @param $params array installation parameters
  */
 function Install($params)
 {
     parent::Installer('install.xml', $params);
 }
Example #4
0
 /**
  * Constructor.
  * @param $params array upgrade parameters
  */
 function Upgrade($params)
 {
     parent::Installer('upgrade.xml', $params);
 }