[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.138.174.45: ~ $
<?php

namespace WPV_AE;

class MetaBoxes{

    private static $_instance = null;

    public static function instance()
    {
        if (is_null(self::$_instance)) {
            self::$_instance = new self();
        }
        return self::$_instance;
    }

    private function __construct(){

        add_action("add_meta_boxes", [$this, 'add_meta_boxes']);

        add_filter( 'manage_ae_global_templates_posts_columns', [$this, 'add_column'] );
        add_action('manage_ae_global_templates_posts_custom_column', [$this, 'column_data'], 10, 2);
    }

    public function add_meta_boxes(){
        add_meta_box('ae-shortcode-box','Anywhere Elementor Usage',[$this, 'ae_shortcode_box'],'ae_global_templates','side','high');  
    }

    function ae_shortcode_box($post){
        ?>
        <h4 style="margin-bottom:5px;">Shortcode</h4>
        <input type='text' class='widefat' value='[INSERT_ELEMENTOR id="<?php echo $post->ID; ?>"]' readonly="">
    
        <h4 style="margin-bottom:5px;">Php Code</h4>
        <input type='text' class='widefat' value="&lt;?php echo do_shortcode('[INSERT_ELEMENTOR id=&quot;<?php echo $post->ID; ?>&quot;]'); ?&gt;" readonly="">
        <?php
    }

    function add_column($columns){
        $columns['ae_shortcode_column'] = __( 'Shortcode', 'wts_ae' );
	    return $columns;
    }

    function column_data($column, $post_id){
        switch ( $column ) {

            case 'ae_shortcode_column' :
                echo '<input type=\'text\' class=\'widefat\' value=\'[INSERT_ELEMENTOR id="'.$post_id.'"]\' readonly="">';
                break;
        }
    }

}

MetaBoxes::instance();

Filemanager

Name Type Size Permission Actions
bootstrap.php File 1.36 KB 0644
meta-box.php File 1.6 KB 0644
post-type.php File 2.54 KB 0644
shortcode.php File 1.24 KB 0644