site_oueb_2/wp-content/plugins/ocean-extra/includes/panel/library.php

255 lines
6.2 KiB
PHP
Raw Permalink Normal View History

2022-11-22 20:23:31 +01:00
<?php
/**
* My Library
*
* @package Ocean_Extra
* @category Core
* @author OceanWP
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Start Class
class Ocean_Extra_My_Library {
/**
* Start things up
*/
public function __construct() {
add_action( 'init', array( $this, 'library_post_type' ) );
if ( is_admin() ) {
add_action( 'admin_menu', array( $this, 'add_page' ), 1 );
add_filter( 'ocean_main_metaboxes_post_types', array( $this, 'add_metabox' ), 20 );
add_action( 'add_meta_boxes_oceanwp_library', array( $this, 'shortcode_metabox' ) );
add_filter( 'manage_edit-oceanwp_library_columns', array( $this, 'edit_columns' ) );
add_action( 'manage_oceanwp_library_posts_custom_column', array( $this, 'custom_columns' ), 10, 2 );
add_filter( 'register_post_type_args', array( $this, 'oe_post_type_args' ), 10, 2 );
}
add_action( 'template_redirect', array( $this, 'block_template_frontend' ) );
}
/**
* Add sub menu page
*
* @since 1.2.10
*/
public function add_page() {
// Name
$name = esc_html__( 'My Library', 'ocean-extra' );
$name = apply_filters( 'ocean_my_library_text', $name );
add_submenu_page(
'oceanwp',
esc_html__( 'My Library', 'ocean-extra' ),
$name,
'manage_options',
'edit.php?post_type=oceanwp_library'
);
}
/**
* Register library post type
*
* @since 1.2.10
*/
public static function library_post_type() {
// Name
$name = esc_html__( 'My Library', 'ocean-extra' );
$name = apply_filters( 'ocean_my_library_text', $name );
// Register the post type
register_post_type( 'oceanwp_library', apply_filters( 'ocean_library_args', array(
'labels' => array(
'name' => $name,
'singular_name' => esc_html__( 'Template', 'ocean-extra' ),
'add_new' => esc_html__( 'Add New', 'ocean-extra' ),
'add_new_item' => esc_html__( 'Add New Template', 'ocean-extra' ),
'edit_item' => esc_html__( 'Edit Template', 'ocean-extra' ),
'new_item' => esc_html__( 'Add New Template', 'ocean-extra' ),
'view_item' => esc_html__( 'View Template', 'ocean-extra' ),
'search_items' => esc_html__( 'Search Template', 'ocean-extra' ),
'not_found' => esc_html__( 'No Templates Found', 'ocean-extra' ),
'not_found_in_trash' => esc_html__( 'No Templates Found In Trash', 'ocean-extra' ),
'menu_name' => esc_html__( 'My Library', 'ocean-extra' ),
),
'public' => true,
'hierarchical' => false,
'show_ui' => true,
'show_in_menu' => false,
'show_in_nav_menus' => false,
'show_in_rest' => true,
'can_export' => true,
'exclude_from_search' => true,
'capability_type' => 'post',
'rewrite' => false,
'supports' => array( 'title', 'editor', 'thumbnail', 'author', 'elementor' ),
) ) );
}
/**
* post type args
*
* @param array $args Arguments.
* @param string $post_type Post type.
*/
public function oe_post_type_args( $args, $post_type ) {
if ( 'oceanwp_library' === $post_type ) {
$post_id = false;
$is_php = false;
if ( isset( $_GET['post'] ) ) {
$post_id = absint( $_GET['post'] );
}
if ( $post_id ) {
$is_hook_active = get_post_meta( $post_id, 'oh_enable_hook', true );
$is_php = get_post_meta( $post_id, 'oh_hook_php', true );
}
if ( ! $is_php ) {
return $args;
}
if ( 'enable' === $is_php && 'enable' === $is_hook_active ) {
$args['show_in_rest'] = false;
} else {
$args['show_in_rest'] = true;
}
}
return $args;
}
/**
* Add the OceanWP Settings metabox into the custom post type
*
* @since 1.2.10
*/
public static function add_metabox( $types ) {
$types[] = 'oceanwp_library';
return $types;
}
/**
* Make the post type inaccessible
*
* @since 1.2.10
*/
public static function block_template_frontend() {
if ( is_singular( 'oceanwp_library' ) && ! self::is_current_user_can_edit() ) {
wp_redirect( site_url(), 301 );
die;
}
}
/**
* If the current user can edit
*
* @since 1.2.10
*/
public static function is_current_user_can_edit( $post_id = 0 ) {
if ( empty( $post_id ) ) {
$post_id = get_the_ID();
}
if ( 'trash' === get_post_status( $post_id ) ) {
return false;
}
$post_type_object = get_post_type_object( get_post_type( $post_id ) );
if ( empty( $post_type_object ) ) {
return false;
}
if ( ! isset( $post_type_object->cap->edit_post ) ) {
return false;
}
$edit_cap = $post_type_object->cap->edit_post;
if ( ! current_user_can( $edit_cap, $post_id ) ) {
return false;
}
if ( get_option( 'page_for_posts' ) === $post_id ) {
return false;
}
return true;
}
/**
* Add shorcode metabox
* The $this variable is not used to get the display_meta_box() function because it doesn't work on older PHP version.
*
* @since 1.2.2
*/
public static function shortcode_metabox( $post ) {
add_meta_box(
'library-shortcode-metabox',
esc_html__( 'Shortcode', 'ocean-extra' ),
array( 'Ocean_Extra_My_Library', 'display_metabox' ),
'oceanwp_library',
'side',
'low'
);
}
/**
* Add shorcode metabox
*
* @since 1.2.2
*/
public static function display_metabox( $post ) { ?>
<input type="text" class="widefat" value='[oceanwp_library id="<?php echo $post->ID; ?>"]' readonly />
<?php
}
/**
* Add the shortcode column
*
* @since 1.2.2
*/
public static function edit_columns( $columns ) {
$columns['oceanwp_library_shortcode'] = esc_html__( 'Shortcode', 'ocean-extra' );
return $columns;
}
/**
* Display the shortcode column
*
* @since 1.2.2
*/
public static function custom_columns( $column, $post_id ) {
switch ( $column ) :
// Display the shortcode in the column view
case 'oceanwp_library_shortcode':
$shortcode = esc_attr( sprintf( '[oceanwp_library id="%d"]', $post_id ) );
printf( '<input type="text" value="%s" readonly style="min-width: 200px;" />', $shortcode );
break;
endswitch;
}
}
new Ocean_Extra_My_Library();