You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
cosmopet-architecture/dup-installer/templates/base/scripts/step1-deploy.php

22 lines
507 B

<?php
/**
*
* @package templates/default
*/
defined('ABSPATH') || defined('DUPXABSPATH') || exit;
use Duplicator\Installer\Core\Params\PrmMng;
use Duplicator\Libs\Snap\SnapJson;
$nextStepPrams = array(
PrmMng::PARAM_CTRL_ACTION => 'ctrl-step4',
DUPX_Security::CTRL_TOKEN => DUPX_CSRF::generate('ctrl-step4')
);
?>
<script>
DUPX.deployStep1 = function () {
DUPX.oneStepDeploy($('#s1-input-form'), <?php echo SnapJson::jsonEncode($nextStepPrams); ?>);
};
</script>