HEX
Server: LiteSpeed
System: Linux server315.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: globfdxw (6114)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //home/globfdxw/diasporameetsafrica.com/wp-content/themes/DA10/framework/design/text/text10.php
<?php
 
add_filter( 'ppt_blocks_args', 	array('block_text10',  'data') );
add_action( 'text10',  		array('block_text10', 'output' ) );
add_action( 'text10-css',  	array('block_text10', 'css' ) );
add_action( 'text10-js',  	array('block_text10', 'js' ) );

class block_text10 {

	function __construct(){}		

	public static function data($a){  global $CORE;
  
		$a['text10'] = array(
			"name" 	=> "Style 10",
			"image"	=> "text10.jpg",
			"order" => 10,
			"cat"	=> "text",
			"desc" 	=> "", 
			"data" 	=> array( ),	
			
			"defaults" => array(
					
					// TEXT
					"section_padding" => "section-60",
					"section_bg"	=>	"bg-light",	
					
					"title_show" 		=> "yes",
					"title_style" 		=> "1",
					"title_heading" 	=> "h2",
					
					"title" 			=> $CORE->LAYOUT("get_placeholder_text", array('title', "text") ),					 
					"subtitle"			=> $CORE->LAYOUT("get_placeholder_text", array('subtitle', "text") ),					
					"desc" 				=> "",
					 	
					"title_margin"		=> "",
					"subtitle_margin"	=> "",
					"desc_margin" 		=> "",					
					
					"title_font" 		=> "",
					"subtitle_font" 	=> "",
					"desc_font" 		=> "",
					 
					"title_txtcolor" 	=> "dark",
					"subtitle_txtcolor" => "primary",
					"desc_txtcolor" 	=> "opacity-5",
					
					"title_txtw" 		=> "",
					"subtitle_txtw" 	=> "",
					 
					
					// BUTTON					
					"btn_show" 			=> "no",						
					"btn_style" 		=> "1",				
					"btn_size" 			=> "",
					"btn_icon" 			=> "",				
					"btn_icon_pos" 		=> "",
					"btn_font" 			=> "",
					"btn_txt" 			=> __("Search Website","premiumpress"),
					"btn_link" 			=> home_url()."/?s=",
					"btn_bg" 			=> "",
					"btn_bg_txt" 		=> "",					
					"btn_margin" 		=> "mt-4",
					 			
					
					// BUTTON				
					"btn2_show" 		=> "no",						
					"btn2_style" 		=> "2",				
					"btn2_size" 		=> "",
					"btn2_icon" 		=> "",				
					"btn2_icon_pos" 	=> "",
					"btn2_font" 		=> "",
					"btn2_txt" 			=> __("Join Now!","premiumpress"),
					"btn2_link" 		=> wp_login_url(),
					"btn2_bg" 			=> "",
					"btn2_bg_txt" 		=> "",					
					"btn2_margin" 		=> "mt-4",
					
					 
			),
					
		);		
		
		return $a;
	
	} public static function output(){ global $CORE, $new_settings, $settings;
	
	
		$settings = array( );  

		// ADD ON SYSTEM DEFAULTS
		$settings = $CORE->LAYOUT("get_block_settings_defaults", array("text10", "text", $settings ) );
	 
		// UPDATE DATA FROM ELEMENTOR OR CHILD THEMES
		if(is_array($new_settings)){
			 foreach($settings as $h => $j){
				if(isset($new_settings[$h]) && $new_settings[$h] != ""){
					$settings[$h] = $new_settings[$h];
				}
			 }
		} 
		
		if($settings['text_image1'] == ""){
		$settings['text_image1'] =  $CORE->LAYOUT("get_placeholder",array(800,600));
		}
		
		if($settings['text_image2'] == ""){
		$settings['text_image2'] =  $CORE->LAYOUT("get_placeholder",array(800,600));
		}
		
		if($settings['text_image3'] == ""){
		$settings['text_image3'] =  $CORE->LAYOUT("get_placeholder",array(800,600));
		}
		
		// TITLE STYLE
		$settings["title_pos"] = "center";		
		 
	 
	ob_start();
?><section class="<?php echo $settings['section_class']." ".$settings['section_bg']." ".$settings['section_padding']." ".$settings['section_divider']; ?>">
   <div class="container">
   		
        <?php if($settings["title_show"] == "yes"){ ?>
      <div class="row">
      
         <div class="col-md-10 mx-auto text-center mb-5">
          
        	<?php  _ppt_template( 'framework/design/parts/title' ); ?>
            
            <div class="my-4">
            <?php _ppt_template( 'framework/design/parts/btn' ); ?>
            </div>
            
         </div>
         
      </div>
      <?php } ?>
      
         <div class="row">
         
         <div class="col-4">
            <img data-src="<?php echo $settings['text_image1']; ?>" alt="<?php echo $settings['title']; ?>" class="img-fluid mb-5 mb-lg-0 lazy">
         </div>
         
           <div class="col-4">
            <img data-src="<?php echo $settings['text_image2']; ?>" alt="<?php echo $settings['title']; ?>" class="img-fluid mb-5 mb-lg-0 lazy">
         </div>
         
           <div class="col-4">
            <img data-src="<?php echo $settings['text_image3']; ?>" alt="<?php echo $settings['title']; ?>" class="img-fluid lazy">
         </div>
         
         </div>
         
      
   </div>
</section><?php
		$output = ob_get_contents();
		ob_end_clean();
		echo $output;	
	
	}
		public static function css(){
		return "";
		ob_start();
		?>
 
        <?php	
		$output = ob_get_contents();
		ob_end_clean();
		echo $output;
		}	
		public static function js(){
		return "";
		ob_start();
		?>
 
        <?php	
		$output = ob_get_contents();
		ob_end_clean();
		echo $output;
		}	
}

?>