HEX
Server: Apache
System: Linux 162-240-236-42.bluehost.com 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
User: bt667 (1004)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/accelerated-mobile-pages/pagebuilder/modules/blurb-module.php
<?php
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) exit;
/* phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage */
$output = '<div {{if_id}}id="{{id}}"{{ifend_id}} class="amp_pb_module amp_blurb {{css_class}} {{user_class}}"><img src="{{blurb_image}}" width="{{image_width}}" height="{{image_height}}" layout="responsive"/>
<h4>{{text_title}}</h4>
<p>{{text_description}}</p>
</div>'; 

return array(
		'label' =>'Blurb',
		'name' =>'blurb',
		'default_tab'=> 'customizer',
		'tabs' => array(
              'customizer'=>'Customizer',
              'container_css'=>'Container css',
              'advanced'=> 'Advanced'
            ),
		'fields'=> array( 
					array(
						'type'		=>'text',
						'name'		=>"text_title",
						'label'		=>"Title",
						'tab'		=>'customizer',
						'default'	=>'Heart Of The Landing Page',
						'content_type'=>'html'
						),
					array(
						'type'		=>'textarea',
						'name'		=>"text_description",
						'label'		=>"Description",
						'tab'		=>'customizer',
						'default'	=>'This is a sample text which is being used for the dummy purpose to avoid confusion.',
						'content_type'=>'html',
						),
					array(
						'type'		=>'upload',
						'name'		=>"blurb_image",
						'label'		=>"Image",
						'tab'		=>'customizer',
						'default'	=>plugins_url('accelerated-mobile-pages/images/150x150.png'),
						'content_type'=>'html',
						),
					array(
	                    'type'    	=> 'text',
	                    'name'    	=> 'css_class',
	                    'label'   	=> 'Custom CSS Class',
	                    'tab'	 	=>'container_css',
	                    'default' 	=> '',
	                    'content_type'=>'html',
						),
					array(
						'type'		=>'text',
						'name'		=>"id",
						'label'		=>'ID',
						'tab'		=>'advanced',
						'default'	=>'',
						'content_type'=>'html'
					),  
					array(
						'type'		=>'text',
						'name'		=>"user_class",
						'label'		=>'Class',
						'tab'		=>'advanced',
						'default'	=>'',
						'content_type'=>'html'
					),
					),
		'front_template'=> $output,
		'front_css'=>'',	
		'front_common_css'=>'',
	);
?>