File: //home/madepabj/public_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;
}
}