HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/slfopp7cb1df/www/home/wp-content/plugins/easy-pricing-tables/includes/metaboxes/spec.php
<?php

/**
 * Add the features meta box
 * @var [type]
 */
$features_metabox = new WPAlchemy_MetaBox(array
(
	'id' => '1_dh_ptp_settings',
	'title' => __('Pricing Table Settings', 'easy-pricing-tables'),
	'template' => PTP_PLUGIN_PATH . 'includes/metaboxes/features-metabox.php',
	'types' => array('easy-pricing-table', 'us_footer' ),
        'autosave' => TRUE,
        'priority' => 'high',
        'context' => 'normal'
));

$banner_metabox = new WPAlchemy_MetaBox(array
(
    'id' => 'dh_ptp_banner',
    'title' => __('Wanna Get More Sales?', 'easy-pricing-tables'),
    'template' => PTP_PLUGIN_PATH . 'includes/metaboxes/banner-metabox.php',
    'types' => array('easy-pricing-table'),
    'context' => 'side',
    'priority' => 'high',
    'skip_admin_head' => true
));

$tt_quick_links_metabox = new WPAlchemy_MetaBox(array
(
    'id' => 'dh_ptp_banner_quick_link',
    'title' => __('Quick Links', 'easy-pricing-tables'),
    'template' => PTP_PLUGIN_PATH . 'includes/metaboxes/quick-links-metabox.php',
    'types' => array('easy-pricing-table'),
    'context' => 'side',
    'priority' => 'high',
    'skip_admin_head' => true
));

$tt_review_metabox = new WPAlchemy_MetaBox(array
(
    'id' => 'dh_ptp_banner_review_box',
    'title' => __('Like this plugin?', 'easy-pricing-tables'),
    'template' => PTP_PLUGIN_PATH . 'includes/metaboxes/ptp-review-metabox.php',
    'types' => array('easy-pricing-table'),
    'context' => 'side',
    'priority' => 'high',
    'skip_admin_head' => true
));


?>