| Server IP : 127.0.0.1 / Your IP : 216.73.216.109 Web Server : Apache/2.4.54 (Win64) OpenSSL/1.1.1q PHP/8.1.10 System : Windows NT DESKTOP-E5T4RUN 10.0 build 19045 (Windows 10) AMD64 User : SERVERWEB ( 0) PHP Version : 8.1.10 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/laragon/www/quilla/wp-content/plugins/td-composer/legacy/common/wp_booster/ |
Upload File : |
<?php
/**
* Created by PhpStorm.
* User: tagdiv
* Date: 25.01.2018
* Time: 15:30
*/
abstract class td_style {
protected abstract function get_style_att( $att_name );
protected abstract function render( $index_style = '' );
protected function get_shortcode_att( $att_name, $index_style = '' ) {
//we need to decode the square bracket case
$attr_value = $this->get_att( $att_name, '', $index_style );
if ( strpos($attr_value, 'td_encval') === 0 ) {
$attr_value = str_replace('td_encval', '', $attr_value);
$attr_value = base64_decode( $attr_value );
}
return $attr_value;
}
protected function get_att_name( $att_name, $style_class = '', $index_style = '' ) {
if ( ! empty( $style_class ) ) {
$att_name = $style_class . '-' . $att_name;
}
if ( ! empty( $index_style ) ) {
$att_name .= '-' . $index_style;
}
return $att_name;
}
protected function get_att( $att_name, $style_class = '', $index_style = '' ) {
$atts = $this->get_atts();
if ( empty( $atts ) ) {
td_util::error(__FILE__, get_class($this) . '->get_att(' . $att_name . ') Internal error: The atts are not set yet(AKA: the render template method was called without atts)');
if (TDC_DEPLOY_MODE == 'dev') {
die;
}
}
$key = $this->get_att_name( $att_name, $style_class, $index_style );
if ( ! isset( $atts[ $key ] ) ) {
var_dump( $atts );
td_util::error(__FILE__, 'Internal error: The system tried to use an att that does not exists! class_name: ' . get_class($this) . ' Att name: "' . $att_name . '" as "' . $key . '"');
if (TDC_DEPLOY_MODE == 'dev') {
die;
}
}
return $atts[ $key ];
}
protected static function get_class_style( $class ) {
return str_replace( '_', '-', $class );
}
protected static function get_group_style( $class ) {
$styles = td_api_style::get_all();
return str_replace( '_', '-', $styles[$class]['group'] );
}
protected function get_icon_att( $att_name, $index_style = '' ) {
$icon_class = $this->get_att($att_name, '', $index_style);
$svg_list = td_global::$svg_theme_font_list;
if( array_key_exists( $icon_class, $svg_list ) ) {
return $svg_list[$icon_class];
}
return $icon_class;
}
protected function get_style($css) {
return PHP_EOL . '<style>' . PHP_EOL . '/* custom css - generated by TagDiv Composer */' . PHP_EOL . $css . PHP_EOL . '</style>';
}
}