|
Server IP : 10.106.20.8 / Your IP : 216.73.216.148 Web Server : Apache System : Linux webm008.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : sixiemesrc ( 611999) PHP Version : 8.0.30 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/sixiemesrc/new/wp-content/plugins/gaaga-pro/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
if( !function_exists('gaaga_pro_get_template_plugin_part') ) {
function gaaga_pro_get_template_plugin_part( $file_path, $module, $template, $slug ) {
$html = '';
$template_path = GAAGA_PRO_DIR_PATH . 'modules/' . esc_attr($module);
$temp_path = $template_path . '/' . esc_attr($template);
$plugin_file_path = '';
if ( ! empty( $temp_path ) ) {
if ( ! empty( $slug ) ) {
$plugin_file_path = "{$temp_path}-{$slug}.php";
if ( ! file_exists( $plugin_file_path ) ) {
$plugin_file_path = $temp_path . '.php';
}
} else {
$plugin_file_path = $temp_path . '.php';
}
}
if ( $plugin_file_path && file_exists( $plugin_file_path ) ) {
return $plugin_file_path;
}
return $file_path;
}
add_filter( 'gaaga_get_template_plugin_part', 'gaaga_pro_get_template_plugin_part', 20, 4 );
}
if( !function_exists('gaaga_pro_before_after_widget') ) {
function gaaga_pro_before_after_widget ( $content ) {
$allowed_html = array(
'aside' => array(
'id' => array(),
'class' => array()
),
'div' => array(
'id' => array(),
'class' => array(),
)
);
$data = wp_kses( $content, $allowed_html );
return $data;
}
}
if( !function_exists('gaaga_pro_widget_title') ) {
function gaaga_pro_widget_title( $content ) {
$allowed_html = array(
'div' => array(
'id' => array(),
'class' => array()
),
'h2' => array(
'class' => array()
),
'h3' => array(
'class' => array()
),
'h4' => array(
'class' => array()
),
'h5' => array(
'class' => array()
),
'h6' => array(
'class' => array()
),
'span' => array(
'id' => array(),
'class' => array()
),
'p' => array(
'id' => array(),
'class' => array()
),
);
$data = wp_kses( $content, $allowed_html );
return $data;
}
}
# Filter HTML Output
if(!function_exists('gaaga_html_output')) {
function gaaga_html_output( $html ) {
return apply_filters( 'gaaga_html_output', $html );
}
}