403Webshell
Server IP : 69.39.225.240  /  Your IP : 216.73.216.138
Web Server : Apache
System : Linux bronze7.serverhost.net 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
User : reademotions ( 1074)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/reademotions/www/wp-content/plugins/bb-plugin/modules/reusable-block/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/reademotions/www/wp-content/plugins/bb-plugin/modules/reusable-block//reusable-block.php
<?php

/**
 * A module for rendering reusable blocks.
 *
 * @since 2.6
 */
class FLReusableBlockModule extends FLBuilderModule {

	/**
	 * @since 2.6
	 * @return void
	 */
	public function __construct() {
		parent::__construct( array(
			'name'            => __( 'Reusable Block', 'fl-builder' ),
			'description'     => __( 'Display a reusable block.', 'fl-builder' ),
			'group'           => __( 'Reusable Blocks', 'fl-builder' ),
			'category'        => __( 'Reusable Blocks', 'fl-builder' ),
			'icon'            => 'layout.svg',
			'editor_export'   => true,
			'partial_refresh' => true,
			'enabled'         => false, // We use aliases instead.
		) );
	}

	/**
	 * Returns options for the block select setting.
	 *
	 * @since 2.6
	 * @return array
	 */
	static public function get_options() {
		$posts = get_posts( array(
			'post_type'      => 'wp_block',
			'orderby'        => 'menu_order title',
			'order'          => 'ASC',
			'posts_per_page' => '-1',
		) );

		if ( count( $posts ) ) {
			$blocks = array( __( 'Choose...', 'fl-builder' ) );
		} else {
			$blocks = array( __( 'No reusable blocks found!', 'fl-builder' ) );
		}

		foreach ( $posts as $post ) {
			$blocks[ "block-{$post->ID}" ] = $post->post_title;
		}

		return $blocks;
	}
}

/**
 * Register the module and its form settings.
 */
FLBuilder::register_module( 'FLReusableBlockModule', array(
	'general' => array(
		'title'    => __( 'General', 'fl-builder' ),
		'sections' => array(
			'general' => array(
				'title'  => '',
				'fields' => array(
					'block_id' => array(
						'type'    => 'select',
						'label'   => __( 'Reusable Block', 'fl-builder' ),
						'options' => 'FLReusableBlockModule::get_options',
					),
				),
			),
		),
	),
) );

/**
 * Register module aliases for each reusable block in the
 * Reusable Block group so they can be dragged in like modules.
 */
function fl_register_reusable_block_aliases() {
	if ( ! FLBuilderModel::is_builder_active() ) {
		return;
	}

	$posts = get_posts( array(
		'post_type'      => 'wp_block',
		'orderby'        => 'menu_order title',
		'order'          => 'ASC',
		'posts_per_page' => '-1',
	) );

	foreach ( $posts as $post ) {
		FLBuilder::register_module_alias( 'fl-reusable-block-' . $post->ID, array(
			'module'      => 'reusable-block',
			'name'        => $post->post_title,
			'description' => __( 'Display a reusable block.', 'fl-builder' ),
			'group'       => __( 'Reusable Blocks', 'fl-builder' ),
			'category'    => __( 'Reusable Blocks', 'fl-builder' ),
			'icon'        => 'layout.svg',
			'settings'    => array(
				'block_id' => "block-{$post->ID}",
			),
		) );
	}
}

add_action( 'wp', 'fl_register_reusable_block_aliases', 1 );

Youez - 2016 - github.com/yon3zu
LinuXploit