| Server IP : 43.130.17.34 / Your IP : 216.73.217.6 Web Server : nginx/1.28.0 System : Linux VM-4-12-opencloudos 6.6.92-34.1.oc9.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 25 21:32:13 CST 2025 x86_64 User : www ( 1000) PHP Version : 8.0.26 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/yespkg.com/wp-content/plugins/bb-plugin/classes/ |
Upload File : |
<?php
/**
* Handles logic for the post edit screen.
*
* @since 1.0
*/
final class FLBuilderAdminPosts {
/**
* Initialize hooks.
*
* @since 1.8
* @return void
*/
static public function init()
{
/* Actions */
add_action('current_screen', __CLASS__ . '::init_rendering');
/* Filters */
add_filter('redirect_post_location', __CLASS__ . '::redirect_post_location');
add_filter('page_row_actions', __CLASS__ . '::render_row_actions_link');
add_filter('post_row_actions', __CLASS__ . '::render_row_actions_link');
}
/**
* Sets the body class, loads assets and renders the UI
* if we are on a post type that supports the builder.
*
* @since 1.0
* @return void
*/
static public function init_rendering()
{
global $pagenow;
if ( in_array( $pagenow, array( 'post.php', 'post-new.php') ) ) {
$post_types = FLBuilderModel::get_post_types();
$screen = get_current_screen();
if ( in_array( $screen->post_type, $post_types ) ) {
add_filter( 'admin_body_class', __CLASS__ . '::body_class', 99 );
add_action( 'admin_enqueue_scripts', __CLASS__ . '::styles_scripts' );
add_action( 'edit_form_after_title', __CLASS__ . '::render' );
}
}
}
/**
* Enqueues the CSS/JS for the post edit screen.
*
* @since 1.0
* @return void
*/
static public function styles_scripts()
{
global $wp_version;
// Styles
wp_enqueue_style( 'fl-builder-admin-posts', FL_BUILDER_URL . 'css/fl-builder-admin-posts.css', array(), FL_BUILDER_VERSION );
// Legacy WP Styles (3.7 and below)
if ( version_compare( $wp_version, '3.7', '<=' ) ) {
wp_enqueue_style( 'fl-builder-admin-posts-legacy', FL_BUILDER_URL . 'css/fl-builder-admin-posts-legacy.css', array(), FL_BUILDER_VERSION );
}
// Scripts
wp_enqueue_script( 'json2' );
wp_enqueue_script( 'fl-builder-admin-posts', FL_BUILDER_URL . 'js/fl-builder-admin-posts.js', array(), FL_BUILDER_VERSION );
}
/**
* Adds classes to the post edit screen body class.
*
* @since 1.0
* @param string $classes The existing body classes.
* @return string The body classes.
*/
static public function body_class( $classes = '' )
{
global $wp_version;
// Builder body class
if ( FLBuilderModel::is_builder_enabled() ) {
$classes .= ' fl-builder-enabled';
}
// Pre WP 3.8 body class
if ( version_compare( $wp_version, '3.8', '<' ) ) {
$classes .= ' fl-pre-wp-3-8';
}
return $classes;
}
/**
* Renders the HTML for the post edit screen.
*
* @since 1.0
* @return void
*/
static public function render()
{
global $post;
$post_type_obj = get_post_type_object ( $post->post_type );
$post_type_name = strtolower( $post_type_obj->labels->singular_name );
$enabled = FLBuilderModel::is_builder_enabled();
include FL_BUILDER_DIR . 'includes/admin-posts.php';
}
/**
* Renders the action link for post listing pages.
*
* @since 1.0
* @param array $actions
* @return array The array of action data.
*/
static public function render_row_actions_link( $actions = array() )
{
global $post;
if ( 'trash' != $post->post_status && current_user_can( 'edit_post', $post->ID ) && wp_check_post_lock( $post->ID ) === false ) {
$post_types = FLBuilderModel::get_post_types();
if ( in_array( $post->post_type, $post_types ) ) {
$actions['fl-builder'] = '<a href="' . FLBuilderModel::get_edit_url() . '">' . FLBuilderModel::get_branding() . '</a>';
}
}
return $actions;
}
/**
* Where to redirect this post on save.
*
* @since 1.0
* @param string $location
* @return string The location to redirect this post on save.
*/
static public function redirect_post_location( $location )
{
if ( isset( $_POST['fl-builder-redirect'] ) ) {
$location = $_POST['fl-builder-redirect'];
}
return $location;
}
}
FLBuilderAdminPosts::init();