HEX
Server: nginx/1.27.1
System: Linux in-4 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64
User: ilikadirect (1186)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v6964/gopalak/public_html/wp-content/plugins/shared-files/public/class-sf-public-load.php
<?php

class SharedFilesPublicLoad {
    public function public_inline_styles() {
        $styles = $this->get_inline_styles();
        wp_add_inline_style( 'shared-files', $styles );
    }

    public function get_inline_styles() {
        $s = get_option( 'shared_files_settings' );
        $out = '';
        if ( isset( $s['featured_image_container_width'] ) && ($featured_img_width_px = intval( $s['featured_image_container_width'] )) ) {
            $out .= '@media (min-width: 768px) {';
            $out .= '.shared-files-main-elements-featured-image { flex: 0 0 ' . $featured_img_width_px . 'px; }';
            $out .= '}';
        }
        if ( isset( $s['featured_image_container_height'] ) && ($featured_img_height_px = intval( $s['featured_image_container_height'] )) ) {
            $out .= '@media (min-width: 768px) {';
            $out .= '.shared-files-main-elements-featured-image { height: ' . $featured_img_height_px . 'px; }';
            $out .= '}';
        }
        if ( isset( $s['show_file_upload_checkboxes_on_multiple_columns'] ) ) {
            $out .= '
        ul.sf-termlist,
        .sf-taglist {
          columns: 240px 5;
        }';
        }
        if ( isset( $s['card_small_font_size'] ) && $s['card_small_font_size'] ) {
            $out .= '.shared-files-main-elements p { font-size: 15px; }';
        }
        if ( isset( $s['card_font'] ) && $s['card_font'] ) {
            if ( $s['card_font'] == 'roboto' ) {
                $out .= '.shared-files-main-elements * { font-family: "Roboto", sans-serif; }';
            } elseif ( $s['card_font'] == 'ubuntu' ) {
                $out .= '.shared-files-main-elements * { font-family: "Ubuntu", sans-serif; }';
            }
        }
        if ( isset( $s['card_background'] ) && $s['card_background'] ) {
            $out .= '.shared-files-container .shared-files-main-file-list li { margin-bottom: 16px; } ';
            if ( $s['card_background'] == 'custom_color' && isset( $s['card_background_custom_color'] ) && $s['card_background_custom_color'] ) {
                $custom_color = '#' . esc_attr( $s['card_background_custom_color'] );
                if ( $custom_color && preg_match( '/^#([0-9A-F]{3}){1,2}$/i', $custom_color ) ) {
                    $out .= '.shared-files-main-elements { background: ' . esc_attr( $custom_color ) . '; padding: 20px 10px; border-radius: 10px; margin-bottom: 20px; } ';
                } else {
                    $out .= '.shared-files-main-elements { background: #f7f7f7; padding: 20px 10px; border-radius: 10px; margin-bottom: 20px; } ';
                }
            } elseif ( $s['card_background'] == 'white' ) {
                $out .= '.shared-files-main-elements { background: #fff; padding: 20px 10px; border-radius: 10px; } ';
            } elseif ( $s['card_background'] == 'light_gray' ) {
                $out .= '.shared-files-main-elements { background: #f7f7f7; padding: 20px 10px; border-radius: 10px; } ';
            }
        }
        if ( isset( $s['card_height'] ) && $s['card_height'] ) {
            $out .= '.shared-files-main-file-list li { min-height: ' . intval( $s['card_height'] ) . 'px; } ';
            $out .= '.shared-files-2-cards-on-the-same-row .shared-files-main-file-list li { min-height: ' . intval( $s['card_height'] ) . 'px; } ';
            $out .= '.shared-files-3-cards-on-the-same-row .shared-files-main-file-list li { min-height: ' . intval( $s['card_height'] ) . 'px; } ';
            $out .= '.shared-files-4-cards-on-the-same-row .shared-files-main-file-list li { min-height: ' . intval( $s['card_height'] ) . 'px; } ';
            $out .= ' @media (max-width: 500px) { .shared-files-main-file-list li { min-height: 0; } } ';
            $out .= ' @media (max-width: 500px) { .shared-files-2-cards-on-the-same-row .shared-files-main-file-list li { min-height: 0; } } ';
            $out .= ' @media (max-width: 500px) { .shared-files-3-cards-on-the-same-row .shared-files-main-file-list li { min-height: 0; } } ';
            $out .= ' @media (max-width: 500px) { .shared-files-4-cards-on-the-same-row .shared-files-main-file-list li { min-height: 0; } } ';
        }
        return $out;
    }

    /**
     * Set cookies.
     *
     * @since    1.0.0
     */
    public function set_cookies() {
        if ( isset( $_GET['SF_DEBUG_311'] ) ) {
            var_dump( intval( get_current_user_id() ) );
            print '<br /><br />';
            $current_user_x = wp_get_current_user();
            var_dump( $current_user_x );
            print '<br /><br />';
            var_dump( $current_user_x->ID );
            print '<br /><br />';
            global $current_user;
            var_dump( $current_user );
            wp_die();
        }
        if ( isset( $_POST['_sf_cat_password'] ) && $_POST['_sf_cat_password'] && !is_admin() ) {
            setcookie(
                '_sf_cat_password',
                sanitize_text_field( $_POST['_sf_cat_password'] ),
                strtotime( '+30 minutes' ),
                '/'
            );
        }
    }

}