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: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427: 428: 429: 430: 431: 432: 433: 434: 435: 436: 437: 438: 439: 440: 441: 442: 443: 444: 445: 446: 447: 448: 449: 450: 451: 452: 453: 454: 455: 456: 457: 458: 459: 460: 461: 462: 463: 464: 465: 466: 467: 468: 469: 470: 471: 472: 473: 474: 475: 476: 477: 478: 479: 480: 481: 482: 483: 484: 485:
<?php
if ( !class_exists('CTA_Template_Manager') ) {
class CTA_Template_Manager {
public function __construct() {
add_action( 'admin_enqueue_scripts', array(__CLASS__, 'enqueue_scripts'));
add_action('admin_menu', array(__CLASS__, 'add_pages'));
}
public static function enqueue_scripts() {
$screen = get_current_screen();
if ( ( isset($screen) && $screen->base == 'wp-call-to-action_page_wp_cta_templates_upload' ) ){
wp_enqueue_script('wp-cta-js-templates-upload', WP_CTA_URLPATH . 'assets/js/admin/admin.templates-upload.js' , array() , null , true );
}
if ( ( isset($screen) && $screen->base == 'wp-call-to-action_page_wp_cta_manage_templates' ) ){
wp_enqueue_style('wp-cta-css-templates', WP_CTA_URLPATH . 'assets/css/admin-templates.css');
wp_enqueue_script('wp-cta-js-templates', WP_CTA_URLPATH . 'assets/js/admin/admin.templates.js' , array() , null , true );
}
}
public static function dont_install_cta_templates_here(){
$screen = get_current_screen();
if ( $screen->id !== 'themes') {
return;
}
$link = admin_url( 'edit.php?post_type=wp-call-to-action&page=wp_cta_manage_templates' ); ?>
<div class="error" style="margin-top:-20px;">
<h3 style='font-weight:normal; margin-bottom:0px;padding-bottom:0px;'>
<strong>
<?php _e( 'Attention Calls to Action Users:' , 'inbound-pro' ); ?>
</strong>
</h3>
<p style='font-weight:normal;margin-top:0px; margin-bottom:0px;padding-bottom:10px;'><?php _e( sprintf( 'If you are trying to install a <strong>call to action template</strong> from Inbound Now, %s Please Follow these instructions%s' , '<a href=\'http://docs.inboundnow.com/guide/installing-new-templates/\' target=\'_blank\'>' , '</a>' ) , 'lcta' ); ?><br>
<?php echo "CTA templates need to be installed <a href='".$link."'>here</a> in the <strong><a href='".$link."'>Calls to Action</a> > <a href='".$link."'>Manage templates area</a></strong>"; ?>
</p>
</div>
<?php }
public static function add_pages() {
if ( !current_user_can('manage_options') ) {
return;
}
global $_registered_pages;
$hookname = get_plugin_page_hookname('wp_cta_manage_templates', 'edit.php?post_type=wp-call-to-action');
if (!empty($hookname)) {
add_action( $hookname, array(__CLASS__, 'display_management_page'));
}
$_registered_pages[$hookname] = true;
$hookname = get_plugin_page_hookname('wp_cta_templates_upload', 'edit.php?post_type=wp-call-to-action');
if (!empty($hookname)) {
add_action( $hookname, array(__CLASS__, 'display_upload_page'));
}
$_registered_pages[$hookname] = true;
$hookname = get_plugin_page_hookname('wp_cta_store', 'edit.php?post_type=wp-call-to-action');
if (!empty($hookname)) {
add_action( $hookname, array(__CLASS__, 'display_store_search'));
}
$_registered_pages[$hookname] = true;
}
public static function display_management_page() {
self::run_management_actions();
$title = __('Manage Templates');
echo '<div class="wrap">';
?>
<h2><?php echo esc_html( $title ); ?>
<a href="edit.php?post_type=wp-call-to-action&page=wp_cta_templates_upload" class="add-new-h2"><?php echo esc_html_x('Add New Template', 'template'); ?></a>
</h2>
<?php
$myListTable = new CTA_Template_Manager_List();
$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 run_management_actions() {
if (!isset($_REQUEST['action'])) {
return;
}
switch ($_REQUEST['action']):
case 'upgrade':
if (count($_REQUEST['template'])>0) {
foreach ($_REQUEST['template'] as $key=>$slug) {
wp_cta_templates_upgrade_template($slug);
}
}
break;
case 'delete':
if (count($_REQUEST['template'])>0) {
foreach ($_REQUEST['template'] as $key=>$slug) {
self::delete_template( WP_CTA_PATH.'templates/'.$slug, $slug );
}
}
break;
endswitch;
}
public static function check_template_for_update( $item ) {
$version = $item['version'];
$api_response = self::api_request( $item );
if( false !== $api_response ) {
if( version_compare( $version, $api_response['new_version'], '<' ) ) {
$template_page = WP_CTA_STORE_URL."/downloads/".$item['ID']."/";
$html = '<div class="update-message">'.$item['version'].' <font class="update-available">Version '.$api_response['new_version'].' available.</font><br> <a title="'.$item['name'].'" class="thickbox" href="'.$template_page.'" target="_blank">View template details</a> ';
$html .= 'or <a href="?post_type=wp-call-to-action&page=wp_cta_manage_templates&action=upgrade&template%5B%5D='.$item['ID'].'">update now</a>.</div>';
return $html;
} else {
return $item['version'];
}
} else {
return $item['version'];
}
}
public static function upgrade_template( $slug ) {
$CTA_Load_Extensions = CTA_Load_Extensions();
$wp_cta_data = $CTA_Load_Extensions->template_definitions;
$data = $wp_cta_data[$slug];
$item['ID'] = $slug;
$item['template'] = $slug;
$item['name'] = $data['label'];
$item['category'] = $data['category'];
$item['description'] = $data['description'];
$response = self::api_request( $item );
$package = $response['package'];
if (!isset($package)||empty($package)) {
return;
}
$zip_array = wp_remote_get($package,null);
($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.'/wp-call-to-actions/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) {
if (!file_exists($dir)) {
return true;
}
$CTA_Load_Extensions = CTA_Load_Extensions();
$data = $CTA_Load_Extensions->template_definitions;
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;
}
}
}
rmdir($dir);
echo '<div class="updated"><p>'.$data['label'].' deleted successfully!</div>';
}
public static function api_request( $item ) {
$api_params = array(
'edd_action' => 'get_version',
'license' => '',
'name' => $item['name'],
'slug' => $item['ID'],
'nature' => 'template',
);
$request = wp_remote_post( WP_CTA_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;
}
}
public static function display_upload_page() {
$screen = get_current_screen();
if ( ( isset($screen) && $screen->base != 'wp-call-to-action_page_wp_cta_templates_upload' ) ){
return;
}
self::run_upload_commands();
self::display_upload_form();
self::search_templates();
}
public static function display_upload_form() { ?>
<div class="wrap templates_upload">
<div class="icon32" id="icon-plugins"><br></div><h2><?php _e( 'Install 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">
<h4><?php _e( 'Install Calls to Action 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('wp-cta-nonce'); ?>" name="wp_cta_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="<?php _e('Install Now', 'inbound-pro' ) ; ?>" class="button" id="install-template-submit" name="install-template-submit" disabled="">
</form>
</div>
<?php
}
public static function run_upload_commands() {
if (!$_FILES) {
return;
}
$name = $_FILES['templatezip']['name'];
$name = preg_replace('/\((.*?)\)/','',$name);
$name = str_replace(array(' ','.zip'),'',$name);
$name = trim($name);
if (!wp_verify_nonce($_POST["wp_cta_wpnonce"], 'wp-cta-nonce')) {
return NULL;
}
include_once( ABSPATH . 'wp-admin/includes/class-pclzip.php');
$zip = new PclZip( $_FILES['templatezip']["tmp_name"]);
if ( !is_dir( WP_CTA_UPLOADS_PATH ) ) {
wp_mkdir_p( WP_CTA_UPLOADS_PATH );
}
if (($list = $zip->listContent()) == 0) {
die(__('There was a problem. Please try again!', 'cta'));
}
$is_template = false;
foreach ($list as $key=>$val) {
foreach ($val as $k=>$val) {
if (strstr($val,'/config.php')) {
$is_template = true;
break;
} else if($is_template==true) {
break;
}
}
}
if (!$is_template) {
echo "<br><br><br><br>";
die(__( 'WARNING! This zip file does not seem to be a call to action template file! If you are trying to install an inbound now extension please use the Plugin\'s upload section! Please press the back button and try again!', 'cta'));
}
if ($result = $zip->extract(PCLZIP_OPT_PATH, WP_CTA_UPLOADS_PATH, PCLZIP_OPT_REPLACE_NEWER ) == 0) {
die(__( 'There was a problem. Please try again!', 'cta'));
} else {
unlink( $_FILES['templatezip']["tmp_name"]);
echo '<div class="updated"><p>'. __( 'Template uploaded successfully!', 'inbound-pro' ) .'</div>';
}
}
public static function search_templates() { ?>
<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=wp-call-to-action&page=wp_cta_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 display_store_search() {
if (isset($_POST['search'])) {
$search = urlencode($_POST['search']);
$url = WP_CTA_STORE_URL."?type=templates&s=".$search;
?>
<div style='text-align:right;margin:10px;'>
<form action="edit.php?post_type=wp-call-to-action&page=wp_cta_store" method="POST" id="">
<input type="search" autofocus="autofocus" name="search" value="<?php echo $_POST['search']; ?>">
<label for="plugin-search-input" class="screen-reader-text">Search Templates</label>
<input type="submit" value="Search Templates" class="button" id="plugin-search-input" name="plugin-search-input">
</form>
</div>
<?php
} else {
$url = WP_CTA_STORE_URL;
}
?>
<script type='text/javascript'>
jQuery(document).ready(function($) {
new easyXDM.Socket({
remote: "<?php echo $url; ?>",
container: document.getElementById("wp-cta-store-iframe-container"),
onMessage: function(message, origin){
var height = Number(message) + 1000;
this.container.getElementsByTagName("iframe")[0].scrolling="no";
this.container.getElementsByTagName("iframe")[0].style.height = height + "px";
}
});
});
</script>
<div id="wp-cta-store-iframe-container">
</div>
<?php
}
}
function load_CTA_Template_Manager() {
$CTA_Template_Manager = new CTA_Template_Manager;
}
add_action( 'init', 'load_CTA_Template_Manager' );
}