1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414:
<?php
class Landing_Pages_Template_Management {
public function __construct() {
self::load_hooks();
self::load_views();
}
public static function load_hooks() {
add_action('admin_enqueue_scripts', array(__CLASS__, 'enqueue_admin_scripts_manage'));
add_action('admin_enqueue_scripts', array(__CLASS__, 'enqueue_admin_scripts_upload'));
add_action('admin_menu', array( __CLASS__ , 'create_pages' ) );
}
public static function create_pages() {
if ( !current_user_can('manage_options') ) {
return;
}
global $_registered_pages;
$hookname = get_plugin_page_hookname('lp_templates_upload', 'edit.php?post_type=landing-page');
if (!empty($hookname)) {
add_action($hookname, 'lp_templates_upload');
}
$_registered_pages[$hookname] = true;
$hookname = get_plugin_page_hookname('lp_templates_search', 'edit.php?post_type=landing-page');
if (!empty($hookname)) {
add_action($hookname, 'lp_templates_search');
}
$_registered_pages[$hookname] = true;
}
public static function enqueue_admin_scripts_manage() {
$screen = get_current_screen();
if ($screen->base != 'landing-page_page_lp_manage_templates') {
return;
}
wp_enqueue_style( 'lp-css-templates' , LANDINGPAGES_URLPATH . 'assets/css/admin-templates.css', array() , null);
wp_enqueue_script( 'lp-js-templates' , LANDINGPAGES_URLPATH . 'assets/js/admin/admin.templates.js', array() , null);
}
public static function enqueue_admin_scripts_upload() {
$screen = get_current_screen();
if ($screen->base != 'landing-landing-page_page_lp_templates_upload') {
return;
}
wp_enqueue_script( 'lp-js-templates-upload' , LANDINGPAGES_URLPATH . 'assets/js/admin/admin.templates-upload.js', array() , null);
}
public static function load_views() {
}
public static function display_template_management_view() {
self::run_management_actions();
echo '<div class="wrap">';
?>
<h2><?php _e( 'Manage Templates' , 'inbound-pro' ); ?>
<a href="edit.php?post_type=landing-page&page=lp_templates_upload"
class="add-new-h2"><?php echo esc_html_x('Add New Template', 'landing-pages'); ?></a>
</h2>
<?php
$myListTable = new Landing_Pages_Templates_List_Table();
$myListTable->prepare_items();
?>
<form method="post">
<input type="hidden" name="page" value="my_list_test"/>
<?php $myListTable->search_box('search', 'search_id'); ?>
</form>
<form method="post" id='bulk_actions'>
<?php
$myListTable->display();
echo '</div></form>';
}
public static function display_upload_view() {
self::run_upload_actions();
self::display_upload_prompt();
self::display_template_search();
}
public static function run_management_actions() {
if (!isset($_REQUEST['action'])) {
return;
}
switch ($_REQUEST['action']):
case 'upgrade':
if (count($_REQUEST['template']) > 0) {
foreach ($_REQUEST['template'] as $key => $slug) {
self::action_upgrade_template( $slug );
}
}
break;
case 'delete':
if (count($_REQUEST['template']) > 0) {
foreach ($_REQUEST['template'] as $key => $slug) {
self::delete_template(LANDINGPAGES_UPLOADS_PATH . $slug, $slug);
}
}
break;
endswitch;
echo('<meta http-equiv="refresh" content="0;url=edit.php?post_type=landing-page&page=lp_manage_templates">');
exit;
}
public static function run_upload_actions() {
if (!$_FILES || !wp_verify_nonce($_POST["lp_wpnonce"], 'lp-nonce')) {
return;
}
$name = $_FILES['templatezip']['name'];
$name = preg_replace('/\((.*?)\)/', '', $name);
$name = str_replace(array(' ', '.zip'), '', $name);
$name = trim($name);
include_once(ABSPATH . 'wp-admin/includes/class-pclzip.php');
$zip = new PclZip($_FILES['templatezip']["tmp_name"]);
$uploads = wp_upload_dir();
$uploads_path = $uploads['basedir'];
$extended_path = $uploads_path . '/landing-pages/templates/';
if (!is_dir($extended_path)) {
wp_mkdir_p($extended_path);
}
if (($list = $zip->listContent()) == 0) {
die("There was a problem. Please try again!");
}
$is_template = false;
foreach ($list as $key => $val) {
foreach ($val as $k => $v) {
if (strstr($v, '/config.php')) {
$is_template = true;
break;
} else if (strstr($v, 'config.php')) {
$misconfig = 1;
}else if ($is_template == true) {
break;
}
}
}
if (!$is_template) {
echo '<br><br><br><br>';
if ($misconfig) {
die( __('We\'ve detected that this is a landing page template, but the files need to be zipped inside the parent folder. Please restructure your zip file so that it\'s contents are inside a parent directory with your template\'s name.' , 'inbound-pro' ));
} else {
die( __('WARNING! This zip file does not seem to be a template file! If you are trying to install a Landing Page extension please use the Plugin\'s upload section! Please press the back button and try again!' , 'inbound-pro' ));
}
}
if ($result = $zip->extract(PCLZIP_OPT_PATH, $extended_path, PCLZIP_OPT_REPLACE_NEWER) == 0) {
die( __( 'There was a problem. Please try again!' , 'inbound-pro' ) );
} else {
unlink($_FILES['templatezip']["tmp_name"]);
echo '<div class="updated"><p>' . __( 'Template uploaded successfully!' , 'inbound-pro' ) . '</div>';
}
}
public static function display_upload_prompt() {
require_once (ABSPATH .'wp-includes/pluggable.php');
?>
<div class="wrap templates_upload">
<div class="icon32" id="icon-plugins"><br></div><h2><?php _e( 'Install Templates' , 'landing-pages'); ?></h2>
<ul class="subsubsub">
<li class="plugin-install-manager"><a href="<?php echo admin_url('edit.php?post_type=landing-page&page=lp_manage_templates' ); ?>" id='manage'><?php _e( 'Back' ,'landing-pages'); ?></a> |</li>
<li class="plugin-install-dashboard"><a target="_blank" href="https://www.inboundnow.com/market/?show=landing-pages" id='menu_search'><?php _e( 'Find New Templates' ,'landing-pages'); ?></a> |</li>
<li class="plugin-install-upload"><a class="current" href="#upload" id='menu_upload'><?php _e( 'Upload' , 'landing-pages'); ?></a> </li>
</ul>
<br class="clear">
<h4><?php _e('Install Landing Pages template by uploading them here in .zip format' , 'inbound-pro'); ?></h4>
<p class="install-help"><?php _e( 'Warning: Do not upload landing page extensions here or you will break the plugin! <br>Extensions are uploaded in the WordPress plugins section.' , 'inbound-pro'); ?></p>
<form action="" class="wp-upload-form" enctype="multipart/form-data" method="post">
<input type="hidden" value="<?php echo wp_create_nonce('lp-nonce'); ?>" name="lp_wpnonce" id="_wpnonce">
<input type="hidden" value="/wp-admin/plugin-install.php?tab=upload" name="_wp_http_referer">
<label for="pluginzip" class="screen-reader-text"><?php _e( 'Template zip file' , 'inbound-pro'); ?></label>
<input type="file" name="templatezip" id="templatezip">
<input type="submit" value="Install Now" class="button" id="install-template-submit" name="install-template-submit" disabled="">
</form>
</div>
<?php
}
public static function display_template_search() {
?>
<div class="wrap templates_search" style='display:none'>
<div class="icon32" id="icon-plugins"><br></div><h2><?php _e( 'Search Templates' , 'inbound-pro'); ?></h2>
<ul class="subsubsub">
<li class="plugin-install-dashboard"><a href="#search" id='menu_search'><?php _e( 'Search' , 'inbound-pro'); ?></a> |</li>
<li class="plugin-install-upload"><a class="current" href="#upload" id='menu_upload'><?php _e( 'Upload' , 'inbound-pro'); ?></a> </li>
</ul>
<br class="clear">
<p class="install-help"><?php _e( 'Search the Inboundnow marketplace for free and premium templates.' , 'inbound-pro'); ?></p>
<form action="edit.php?post_type=landing-page&page=lp_store" method="POST" id="">
<input type="search" autofocus="autofocus" value="" name="search">
<label for="plugin-search-input" class="screen-reader-text"><?php _e( 'Search Templates' , 'inbound-pro'); ?></label>
<input type="submit" value="Search Templates" class="button" id="plugin-search-input" name="plugin-search-input">
</form>
</div>
<?php
}
public static function action_upgrade_template( $slug ) {
global $lp_data;
$data = $lp_data[$slug]['info'];
$item['ID'] = $slug;
$item['template'] = $slug;
$item['name'] = $data['label'];
$item['category'] = $data['category'];
$item['description'] = $data['description'];
$response = self::poll_api($item);
$package = $response['package'];
IF (!isset($package) || empty($package)) return;
$zip_array = wp_remote_get( $package , array( 'timeout' => 60 , 'sslverify' => false ) );
($zip_array['response']['code'] == 200) ? $zip = $zip_array['body'] : die("<div class='error'><p>{$slug}: Invalid download location (Version control not provided).</p></div>");
$uploads = wp_upload_dir();
$uploads_dir = $uploads['path'];
$temp = ini_get('upload_tmp_dir');
if (empty($temp)) {
$temp = "/tmp";
}
$file_path = $temp . "/" . $slug . ".zip";
file_put_contents($file_path, $zip);
include_once(ABSPATH . 'wp-admin/includes/class-pclzip.php');
$zip = new PclZip($file_path);
$uploads = wp_upload_dir();
$uploads_path = $uploads['basedir'];
$extended_path = $uploads_path . '/landing-pages/templates/';
if (!is_dir($extended_path)) {
wp_mkdir_p($extended_path);
}
$result = $zip->extract(PCLZIP_OPT_PATH, $extended_path, PCLZIP_OPT_REPLACE_NEWER);
if (!$result) {
die("There was a problem. Please try again!");
} else {
unlink($file_path);
echo '<div class="updated"><p>' . $data['label'] . ' upgraded successfully!</div>';
}
}
public static function delete_template($dir, $slug) {
global $lp_data;
$data = $lp_data[$slug];
if (!file_exists($dir)) {
return true;
}
if (!is_dir($dir) || is_link($dir)) {
return unlink($dir);
}
foreach (scandir($dir) as $item) {
if ($item == '.' || $item == '..') {
continue;
}
if (!self::delete_template($dir . "/" . $item, $slug)) {
chmod($dir . "/" . $item, 0777);
if (!self::delete_template($dir . "/" . $item, $slug)) {
return false;
}
};
}
return rmdir($dir);
echo '<div class="updated"><p>' . $data['label'] . ' deleted successfully!</div>';
}
public static function poll_api( $item ) {
$api_params = array('edd_action' => 'get_version', 'license' => get_option('lp-license-keys-' . $item['ID']), 'name' => $item['name'], 'slug' => $item['ID'], 'nature' => 'template',);
$request = wp_remote_post(LANDINGPAGES_STORE_URL, array('timeout' => 15, 'sslverify' => false, 'body' => $api_params));
if (!is_wp_error($request)) {
$request = json_decode(wp_remote_retrieve_body($request), true);
if ($request) $request['sections'] = maybe_unserialize($request['sections']);
return $request;
} else {
return false;
}
}
}
new Landing_Pages_Template_Management;
function lp_templates_upload() {
Landing_Pages_Template_Management::display_upload_view();
}
function lp_manage_templates() {
Landing_Pages_Template_Management::display_template_management_view();
}