golden hour
/home/godaofbq/beyondhyperbarics.com/wp-content/plugins/duplicator-pro/views/settings/package
⬆️ Go Up
Upload
File/Folder
Size
Actions
inc.brand.edit.php
23.55 KB
Del
OK
inc.brand.list.php
16.41 KB
Del
OK
index.php
16 B
Del
OK
main.php
1.41 KB
Del
OK
Edit: inc.brand.edit.php
<?php defined("ABSPATH") or die(""); use Duplicator\Controllers\SettingsPageController; use Duplicator\Core\Controllers\ControllersManager; use Duplicator\Libs\Snap\SnapUtil; use Duplicator\Models\BrandEntity; // Let's make impossible - do TinyMCE textarea required add_action('the_editor', function ($editorMarkup) { if (stripos($editorMarkup, 'required') !== false) { $editorMarkup = str_replace('<textarea', '<textarea required="true"', $editorMarkup); } return $editorMarkup; }); $brand_list_url = ControllersManager::getCurrentLink(array('view' => 'list')); $brand_edit_url = ControllersManager::getCurrentLink(array('view' => 'edit')); $was_updated = false; $acceptedActions = array( 'new', 'edit', 'save', 'default', ); //Set proper ID $brandId = SnapUtil::filterInputRequest('id', FILTER_VALIDATE_INT, [ 'options' => ['default' => 0]]); $brandAction = !empty($_REQUEST['action']) && in_array($_REQUEST['action'], $acceptedActions) ? $_REQUEST['action'] : 'new'; if ( (isset($_REQUEST['brand']) && $_REQUEST['brand'] == 'default') || ($brandId <= 0 && !in_array($brandAction, array('new', 'save'))) ) { $brandAction = 'default'; } switch ($brandAction) { case 'new': $brand = new BrandEntity(); $brand->name = __('New Brand', 'duplicator-pro'); break; case 'default': $brand = BrandEntity::getDefaultBrand(); $brands = BrandEntity::getAllWithDefault(); break; case 'edit': // Redirect to new brand if wrong ID is provided $editId = SnapUtil::filterInputRequest('id', FILTER_VALIDATE_INT, array('options' => array('default' => -1))); if (($brand = BrandEntity::getById($editId)) === false) { $redirect_url = ControllersManager::getMenuLink( ControllersManager::SETTINGS_SUBMENU_SLUG, SettingsPageController::L2_SLUG_PACKAGE, SettingsPageController::L3_SLUG_PACKAGE_BRAND, [ 'view' => 'edit', 'action' => 'new', ] ); exit(' <h1>' . __('This brand is not found or deleted. Please create new one.', 'duplicator-pro') . '</h1> <meta http-equiv="refresh" content="0; url=' . $redirect_url . '"> <script type="text/javascript"> window.location.href = "' . $redirect_url . '" </script> '); } break; case 'save': DUP_PRO_U::verifyNonce($_POST['_wpnonce'], 'duplicator-pro-brand-edit'); $was_updated = true; $saveId = filter_input(INPUT_POST, 'id', FILTER_VALIDATE_INT, array('options' => array('default' => -1))); if (($brand = BrandEntity::getById($saveId)) === false) { $brand = new BrandEntity(); } $brand->name = DUP_PRO_U::setVal(stripslashes($_POST['name']), __('New Brand', 'duplicator-pro')); $brand->setAttachments(DUP_PRO_U::isEmpty((isset($_POST['attachments']) ? $_POST['attachments'] : array()), array())); $brand->notes = DUP_PRO_U::setVal(stripslashes($_POST['notes']), ''); $brand->logo = stripcslashes(DUP_PRO_U::setVal($_POST['logo'], '')); $brand->save(); break; default: $brand = new BrandEntity(); break; } // DEBUG //echo '<pre>',print_r($_POST),'</pre><hr>'; //$a = BrandEntity::get_active(); //echo '<pre>',print_r($a),'</pre><hr>'; ?> <style> #dup-storage-form input[type="text"], input[type="password"] { width: 250px;} #dup-storage-form input#name {width:100%; max-width: 500px} #dup-storage-form input#_local_storage_folder {width:100% !important; max-width: 500px} td.dpro-sub-title {padding:0; margin: 0} td.dpro-sub-title b{padding:20px 0; margin: 0; display:block; font-size:1.25em;} input#max_default_store_files {width:50px !important} form#dpro-package-brand-form {padding: 0} form#dpro-package-brand-form input[type="text"] { width:350px;} form#dpro-package-brand-form .readonly {background:transparent; border:none;} textarea#brand-notes {width:350px;} textarea#brand-logo {width:600px; height:120px; font-size: 12px} textarea#brand-default-logo {width:600px;; height:50px; font-size: 12px} div.style-guide-link {text-align: right; width: 100%; display: inline-block; margin:0 0 5px 0} table.form-table {width:800px} div.dpro-dlg-alert-txt {line-height: 20px; font-size: 14px !important} div.preview-area {border:2px dashed #CDCDCD; width:95%; height:auto; background:#fff; font-family: Verdana,Arial,sans-serif;} div.preview-box {border:1px solid #CDCDCD; border-radius: 5px; max-width: 750px; margin: 10px auto 0 auto; height:auto; border-bottom: 1px dashed #999} div.preview-header {height:auto; background: #F1F1F1; box-shadow: 0 5px 3px -3px #999;} div.preview-title {font-size:26px; padding:10px 0 7px 15px; font-weight: bold; min-height:30px; display: flex; justify-content: space-between;} div.preview-content {padding:8px 15px 0 15px; clear:both} div.preview-version {white-space:nowrap; color:#777; font-size:11px; font-style:italic; text-align:right; padding:0 15px 5px 0; line-height: 14px; font-weight:normal; align-self: center;} div.preview-version a {color:#999} div.preview-mode {text-align: right; color:#999; font-style: italic; font-size: 12px} div.preview-steps {font-size: 22px; padding: 0 0 5px 0; border-bottom: 1px solid #D3D3D3; font-weight: bold; margin: 15px 0 20px 0;} div.preview-steps b {color:red} div#preview-logo {display: inline-block} #preview-logo img {max-width:100%} div.preview-notes {text-align:center; font-style: italic; font-size: 12px; margin:5px} </style> <?php if ($was_updated) { $update_message = 'Brand Saved!'; echo "<div class='notice notice-success is-dismissible dpro-wpnotice-box'><p>{$update_message}</p></div>"; } ?> <!-- ==================== TOOL-BAR --> <table class="dpro-edit-toolbar"> <tr> <td></td> <td> <div class="btnnav"> <a href="<?php echo $brand_list_url; ?>" class="button"> <i class="far fa-image"></i> <?php esc_html_e('Brands', 'duplicator-pro'); ?></a> <?php if ($brandAction != 'new') : ?> <a href="<?php echo esc_url($brand_edit_url . "&action=new"); ?>" class="button"><?php esc_html_e('Add New', 'duplicator-pro'); ?></a> <?php endif; ?> </div> </td> </tr> </table> <hr class="dpro-edit-toolbar-divider"/> <form id="dpro-package-brand-form" class="dup-monitored-form" action="<?php echo esc_url($brand_edit_url); ?>" method="post" data-parsley-ui-enabled="true"> <?php wp_nonce_field(Duplicator\Controllers\SettingsPageController::NONCE_ACTION); ?> <input type="hidden" name="id" id="brand-id" value="<?php echo $brand->getId(); ?>" /> <input type="hidden" name="attachments" id="brand-attachments" value="<?php echo join(";", $brand->attachments); ?>" /> <input type="hidden" name="action" id="brand-action" value="<?php echo esc_attr($brandAction); ?>" /> <?php if ($brandAction == 'default') : ?> <table class="provider form-table"> <tr> <th scope="row"><label><?php esc_html_e("Name", 'duplicator-pro'); ?></label></th> <td><?php echo $brand->name; ?></td> </tr> <tr> <th scope="row"><label><?php esc_html_e("Notes", 'duplicator-pro'); ?></label></th> <td><?php echo $brand->notes; ?></td> </tr> <tr> <th scope="row"><label><?php esc_html_e("Logo", 'duplicator-pro'); ?></label></th> <td> <div class="style-guide-link"> <a href="javascript:void" class="button button-small" onclick="DupPro.Brand.ShowStyleGuide();"><?php esc_html_e("Style Guide", 'duplicator-pro'); ?></a> </div> <textarea id="brand-default-logo" readonly="true"><?php echo $brand->logo; ?></textarea> </td> </tr> <tr> <th scope="row"><label><?php esc_html_e("Activation", 'duplicator-pro'); ?></label></th> <td><?php esc_html_e("This brand can be activated by using the installer brand drop-down during the package creation process. It can also be set via a template.", 'duplicator-pro'); ?></td> </tr> </table> <i><?php esc_html_e("The default brand cannot be changed", 'duplicator-pro'); ?></i> <br/><br/> <?php else : ?> <table class="provider form-table"> <tr> <th scope="row"><label><?php esc_html_e("Name", 'duplicator-pro'); ?></label></th> <td> <input type="text" name="name" id="brand-name" value="<?php echo esc_attr($brand->name); ?>" data-parsley-required> <p class="description"><?php esc_html_e("Displayed as the page title of the installer.", 'duplicator-pro'); ?></p> </td> </tr> <tr> <th scope="row"><label><?php esc_html_e("Notes", 'duplicator-pro'); ?></label></th> <td><textarea name="notes" id="brand-notes"><?php echo $brand->notes; ?></textarea></td> </tr> <tr> <th scope="row"><label><?php esc_html_e("Logo", 'duplicator-pro'); ?></label></th> <td> <div class="style-guide-link"> <a href="javascript:void" class="button button-small" onclick="DupPro.Brand.ShowStyleGuide();"><?php esc_html_e("Style Guide", 'duplicator-pro'); ?></a> </div> <?php wp_editor( $brand->logo, 'brand-logo', array( 'wpautop' => true, 'media_buttons' => true, 'textarea_name' => 'logo', 'textarea_rows' => 50, 'tabindex' => '', 'tabfocus_elements' => ':prev,:next', 'editor_css' => '', 'editor_class' => 'required', 'teeny' => false, 'dfw' => false, 'tinymce' => false, 'quicktags' => array('buttons' => 'strong,em,i,ins,close,img,link'), ) ); ?> </td> </tr> <tr> <th scope="row"><label><?php esc_html_e("Activation", 'duplicator-pro'); ?></label></th> <td> <?php esc_html_e("This brand can be activated by using the installer brand drop-down during the package creation process. It can also be set via a template.", 'duplicator-pro'); ?> </td> </tr> </table> <?php endif; ?> <!-- ================================ PREVIEW AREA --> <h2><?php esc_html_e('Preview Area:', 'duplicator-pro'); ?></h2> <div class="preview-area"> <div class="preview-box"> <div class="preview-header"> <div class="preview-title"> <div id="preview-logo"> <?php echo $brand->logo; ?> </div> <div class="preview-version"> <?php esc_html_e("version: ", 'duplicator-pro'); echo DUPLICATOR_PRO_VERSION; ?> <br/> » <a href="javascript:void(0)"><?php esc_html_e("info", 'duplicator-pro'); ?></a> » <a href="javascript:void(0)"><?php esc_html_e("help", 'duplicator-pro'); ?></a> <i class="fas fa-question-circle fa-sm"></i> </div> </div> </div> <div class="preview-content"> <div class="preview-mode"><?php esc_html_e("Mode: Standard Install", 'duplicator-pro'); ?></div> <div class="preview-steps"> <?php echo __("Step <b>1</b> of 4: Deployment", 'duplicator-pro'); ?> </div> </div> </div> <div class="preview-notes"> <?php esc_html_e("Note: Be sure to validate the final results in the installer.php file.", 'duplicator-pro'); ?> </div> </div> <br style="clear:both" /> <?php wp_nonce_field('duplicator-pro-brand-edit'); ?> <button id="dup-save-brand-button" class="button button-primary" type="button" onclick="return DupPro.Settings.Brand.Save();" <?php //$brands is only defined for the default brand if (isset($brands) && $brand->getId() === $brands[0]->getId()) { disabled(true); } ?> > <?php esc_html_e('Save Brand', 'duplicator-pro'); ?> </button> </form> <!-- ========================================== THICK-BOX DIALOGS: --> <?php $guide_msg = __('The brandable area allows for a loose set of html and custom styling. Below is a general guide.', 'duplicator-pro'); $guide_msg .= '<br/><br/>'; $guide_msg .= __('- <b>Embed Image:</b><br/> <img src="/wp-content/uploads/image.png /> <br/><br/>', 'duplicator-pro'); $guide_msg .= __('- <b>Text Only:</b><br/> My Installer Name <br/><br/>', 'duplicator-pro'); $guide_msg .= __( '- <b>Text & Font-Awesome:</b><br/> <i class="fa fa-cube"></i> My Company <br/><small>Note: <a href="http://fontawesome.io/icons/" target="_blank">Font-Awesome 4.7</a> is the referenced library</small><br/><br/>', 'duplicator-pro' ); $alert1 = new DUP_PRO_UI_Dialog(); $alert1->title = __('Branding Guide', 'duplicator-pro'); $alert1->message = $guide_msg; $alert1->width = 650; $alert1->height = 350; $alert1->initAlert(); $alert2 = new DUP_PRO_UI_Dialog(); $alert2->title = __('Brand Name', 'duplicator-pro'); $alert2->message = __("WARNING: Brand name cannot be named like <strong>Default</strong> because is a reserved name.", 'duplicator-pro'); $alert2->initAlert(); $alert3 = new DUP_PRO_UI_Dialog(); $alert3->title = __('Brand Logo', 'duplicator-pro'); $alert3->message = __("WARNING: Brand logo have a wrong URL.", 'duplicator-pro'); $alert3->initAlert(); ?> <script> DupPro.Brand = new Object(); /* Shows the style Guide */ DupPro.Brand.ShowStyleGuide = function() { <?php $alert1->showAlert(); ?> return; } jQuery(document).ready(function ($) { /* * CHECK IS IMAGE * @url: https://github.com/CreativForm/CreativeTools */ $.isImage = function(string) { if(null === string || false === string) return false; return ((string.match(/\.(jpeg|jpg|gif|png|bmp|svg|tiff|jfif|exif|ppm|pgm|pbm|pnm|webp|hdr|hif|bpg|img|pam|tga|psd|psp|xcf|cpt|vicar)$/)!=null) ? true : false); }; /* * CHECK IF IMAGE EXISTS * @url: https://github.com/CreativForm/CreativeTools */ $.imageExists = function(string,callback){ if($.isImage(string)){ var img = new Image(10,10); img.src = string; img.onload = function() { if(typeof callback == 'function'){ callback(true); img = null; } }; img.onerror = function() { if(typeof callback == 'function'){ callback(false); img = null; } }; } else { if(typeof callback == 'function'){ callback(false); img = null; } } }; var strip_tags = function (input, allowed) { // discuss at: http://phpjs.org/functions/strip_tags/ // original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) // improved by: Luke Godfrey // improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) // input by: Pul // input by: Alex // input by: Marc Palau // input by: Brett Zamir (http://brett-zamir.me) // input by: Bobby Drake // input by: Evertjan Garretsen // bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) // bugfixed by: Onno Marsman // bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) // bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) // bugfixed by: Eric Nagel // bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) // bugfixed by: Tomasz Wesolowski // revised by: Rafał Kukawski (http://blog.kukawski.pl/) // example 1: strip_tags('<p>Kevin</p> <br /><b>van</b> <i>Zonneveld</i>', '<i><b>'); // returns 1: 'Kevin <b>van</b> <i>Zonneveld</i>' // example 2: strip_tags('<p>Kevin <img src="someimage.png" onmouseover="someFunction()">van <i>Zonneveld</i></p>', '<p>'); // returns 2: '<p>Kevin van Zonneveld</p>' // example 3: strip_tags("<a href='http://kevin.vanzonneveld.net'>Kevin van Zonneveld</a>", "<a>"); // returns 3: "<a href='http://kevin.vanzonneveld.net'>Kevin van Zonneveld</a>" // example 4: strip_tags('1 < 5 5 > 1'); // returns 4: '1 < 5 5 > 1' // example 5: strip_tags('1 <br/> 1'); // returns 5: '1 1' // example 6: strip_tags('1 <br/> 1', '<br>'); // returns 6: '1 <br/> 1' // example 7: strip_tags('1 <br/> 1', '<br><br/>'); // returns 7: '1 <br/> 1' var allowed = (((allowed || '') + '') .toLowerCase() .match(/<[a-z][a-z0-9]*>/g) || []) .join(''); // making sure the allowed arg is a string containing only tags in lowercase (<a><b><c>) var tags = /<\/?([a-z][a-z0-9]*)\b[^>]*>/gi, commentsAndPhpTags = /<!--[\s\S]*?-->|<\?(?:php)?[\s\S]*?\?>/gi; return input.replace(commentsAndPhpTags, '').replace(tags, function($0, $1) { return allowed.indexOf('<' + $1.toLowerCase() + '>') > -1 ? $0 : ''; }); } DupPro.Settings.Debounce; DupPro.Settings.Brand.Save = function(e) { clearTimeout(DupPro.Settings.Debounce); if ($('#dpro-package-brand-form').parsley().validate()) { var $logo = $("#brand-logo"); $('#brand-action').val('save'); $logo.removeClass('parsley-error'); var image_valid = true; // Check is images valid var images = $('<div />').html($logo.val()).children('img').map(function(){ var image = $(this).attr('src'); return image; }).get(); for(var i = 0; i < images.length; i++) { $.imageExists(images[i],function(r){ if(!r) { image_valid = false; $logo.removeClass('parsley-success').addClass('parsley-error'); } }); } DupPro.Settings.Debounce = setTimeout(function() { // Check is brand name reserved if($('#brand-name') && $.trim($('#brand-name').val()).toLowerCase() == 'default') { <?php $alert2->showAlert(); ?> e.preventDefault(); } else if (!image_valid) { <?php $alert3->showAlert(); ?> e.preventDefault(); } else { DupPro.UI.hasUnsavedChanges = false; $('#dpro-package-brand-form').submit(); } }, 200); } } <?php if ($brandAction != 'default') : ?> //INIT $('#dpro-package-brand-form #brand-name').focus(); // Let's automate this things DupPro.Settings.Automatization = function(e){ if (e.originalEvent !== undefined) { clearTimeout(DupPro.Settings.Debounce); var $this = $("#dpro-package-brand-form #brand-logo"), $debounce = 800 $button = $('#dpro-package-brand-form .button-primary'); // Smart debounce if(e.currentTarget) { if($(e.currentTarget).hasClass('button')) $debounce = 5; if($(e.currentTarget).hasClass('preview-area')) $debounce = 200; } // $button.find('.fa-circle-notch').remove(); // if(!$(e.currentTarget).hasClass('button')) $button.prop('disabled',true).prepend('<i class="fas fa-circle-notch fa-spin"></i> '); DupPro.Settings.Debounce = setTimeout(function() { var $value = $this.val(); // $button.prop('disabled',false).find('.fa-circle-notch').remove(); $this.val(strip_tags($value,'<a><i><b><u><em><ins><div><img><span><strong>')); // Do preview $("#dpro-package-brand-form #preview-logo").html($value); // Now we must made array for path of all images (if the are on server) We don't need remote images (CDN is cool thing) // Let's first collect all images var images = $('<div />').html($value).children('img').map(function(){ return $(this).attr('src') }).get(); images = $.unique(images); $("#dpro-package-brand-form #brand-attachments").val(''); // New magic trick is to determinate is CDN or uploaded image // - CDN will not be return like path // - Server side images will be returned like image real path if(images.length > 0) { var path = images.map(function(src){ var hostname = "<?php echo WP_PLUGIN_URL ?>".replace(/https?|\:\/\/|\/wp-content\/plugins/gi,''); if(new RegExp('(https?:)?//' + hostname,'ig').test(src)) { return src.replace(new RegExp('(https?:)?//' + hostname + '/wp-content|/uploads','ig'), ''); } }); if(path.length > 0) $("#dpro-package-brand-form #brand-attachments").val(path.join(';')); } },$debounce); } }; // On textarea change $(document).on('change keyup paste input mouseout mouseover propertychange',"#dpro-package-brand-form #brand-logo", DupPro.Settings.Automatization); // On other boxes $(document).on('mouseover',"#dpro-package-brand-form .button-primary, #dpro-package-brand-form .preview-area", DupPro.Settings.Automatization); <?php endif; ?> }); </script>
Save