403Webshell
Server IP : 184.75.252.78  /  Your IP : 216.73.217.174
Web Server : LiteSpeed
System : Linux dia.sitehostingserver.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
User : kikeda ( 1072)
PHP Version : 8.2.31
Disable Function : popen,imap_mail,exec,passthru,system,shell_exec,proc_open,pcntl_exec,eval,allow_url_fopen,allow_url_include,mail,proc_get_status,get_cfg_var,disk_free_space,disk_total_space,diskfreespace,getmygid,getmyinode,getmypid,geymyuid,proc_nice,proc_terminate,proc_close,apache_child_terminate,chown,lchgrp,lchown,link,readlink,exif_read_data,read_exif_data,exif_thumbnail,highlight_file,show_source,php_strip_whitespace,get_meta_tags,dl,leak,pfsockopen,event_new,pcntl_signal,pcntl_alarm,register_tick_function,apache_setenv,define_syslog_variables,escapeshellarg,escapeshellcmd,ini_alter,ini_restore,inject_code,openlog,syslog,xmlrpc_entity_decode,phpAds_remoteInfo,phpAds_XmlRpc,phpAds_xmlrpcDecode,phpAds_xmlrpcEncode,chgrp,php_eval,safe_dir,root,ftok,egy_perl,symlink,wscript
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/kikeda/public_html/ballerleather.com/wp-content/themes/magzimum/inc/helper/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/kikeda/public_html/ballerleather.com/wp-content/themes/magzimum/inc/helper/common.php
<?php

if( ! function_exists( 'magzimum_get_custom_background_options' ) ) :

  /**
   * Returns header image enable options.
   *
   * @since Magzimum 1.4
   */
  function magzimum_get_custom_background_options(){

    $choices = array(
      'entire-site'           => esc_html__( 'Entire Site', 'magzimum' ),
      'entire-site-page-post' => esc_html__( 'Entire Site, Page/Post Featured Image', 'magzimum' ),
      'disable'               => esc_html__( 'Disabled', 'magzimum' ),
    );
    $output = apply_filters( 'magzimum_get_custom_background_options', $choices );

    if ( ! empty( $output ) ) {
      ksort( $output );
    }
    return $output;
  }
endif;


if ( ! function_exists( 'magzimum_the_category_uno' ) ) :

  /**
   * Return one category link of a post.
   *
   * @since Magzimum 1.0
   */
  function magzimum_the_category_uno( $id = '' ){

    $output = magzimum_get_the_category_uno( $id );
    echo $output;

  }

endif;


if ( ! function_exists( 'magzimum_get_the_category_uno' ) ) :

  /**
   * Return one category link of a post.
   *
   * @since Magzimum 1.0
   */
  function magzimum_get_the_category_uno( $id = '' ){

    global $post;
    if ( empty( $id )) {
      if ( $post ) {
        $id = $post->ID;
      }
    }
    if ( empty( $id ) ) {
      return;
    }
    $categories = get_the_terms( $id, 'category' );
    if ( ! $categories || is_wp_error( $categories ) )
      $categories = array();

    $categories = array_values( $categories );
    $output = '';
    if ( ! empty( $categories ) && is_array( $categories ) ) {
      $cat = $categories[0];
      $output .= '<a href="' . esc_url( get_term_link( $cat ) ). '">' . esc_html( $cat->name ) . '</a>';
    }
    return $output;

  }

endif;


if( ! function_exists( 'magzimum_get_featured_slider_transition_effects' ) ) :

  /**
   * Returns the featured slider transition effects.
   *
   * @since Magzimum 1.0
   */
  function magzimum_get_featured_slider_transition_effects(){

    $choices = array(
      'fade'       => esc_html__( 'fade', 'magzimum' ),
      'fadeout'    => esc_html__( 'fadeout', 'magzimum' ),
      'none'       => esc_html__( 'none', 'magzimum' ),
      'scrollHorz' => esc_html__( 'scrollHorz', 'magzimum' ),
    );
    $output = apply_filters( 'magzimum_filter_featured_slider_transition_effects', $choices );
    if ( ! empty( $output ) ) {
      ksort( $output );
    }
    return $output;

  }

endif;


if( ! function_exists( 'magzimum_get_featured_slider_content_options' ) ) :

  /**
   * Returns the featured slider content options.
   *
   * @since Magzimum 1.0
   */
  function magzimum_get_featured_slider_content_options(){

    $choices = array(
      'home-page'   => esc_html__( 'Home Page / Front Page', 'magzimum' ),
      'entire-site' => esc_html__( 'Entire Site', 'magzimum' ),
      'disabled'    => esc_html__( 'Disabled', 'magzimum' ),
    );
    $output = apply_filters( 'magzimum_filter_featured_slider_content_options', $choices );
    if ( ! empty( $output ) ) {
      ksort( $output );
    }
    return $output;


  }

endif;


if( ! function_exists( 'magzimum_get_featured_slider_type' ) ) :

  /**
   * Returns the featured slider type.
   *
   * @since Magzimum 1.0
   */
  function magzimum_get_featured_slider_type(){

    $choices = array(
      'featured-category' => esc_html__( 'Featured Category', 'magzimum' ),
    );
    $output = apply_filters( 'magzimum_filter_featured_slider_type', $choices );
    if ( ! empty( $output ) ) {
      ksort( $output );
    }
    return $output;


  }

endif;


if( ! function_exists( 'magzimum_get_global_layout_options' ) ) :

  /**
   * Returns global layout options.
   *
   * @since Magzimum 1.0
   */
  function magzimum_get_global_layout_options(){

    $choices = array(
      'left-sidebar'  => esc_html__( 'Primary Sidebar - Content', 'magzimum' ),
      'right-sidebar' => esc_html__( 'Content - Primary Sidebar', 'magzimum' ),
      'three-columns' => esc_html__( 'Three Columns', 'magzimum' ),
      'no-sidebar'    => esc_html__( 'No Sidebar', 'magzimum' ),
    );
    $output = apply_filters( 'magzimum_filter_layout_options', $choices );
    return $output;

  }

endif;


if( ! function_exists( 'magzimum_get_site_layout_options' ) ) :

  /**
   * Returns site options.
   *
   * @since Magzimum 1.0
   */
  function magzimum_get_site_layout_options(){

    $choices = array(
      'fluid' => esc_html__( 'Fluid', 'magzimum' ),
      'boxed' => esc_html__( 'Boxed', 'magzimum' ),
    );
    $output = apply_filters( 'magzimum_filter_site_layout_options', $choices );
    if ( ! empty( $output ) ) {
      ksort( $output );
    }
    return $output;

  }

endif;


if( ! function_exists( 'magzimum_get_archive_layout_options' ) ) :

  /**
   * Returns archive layout options.
   *
   * @since Magzimum 1.0
   */
  function magzimum_get_archive_layout_options(){

    $choices = array(
      'full'          => esc_html__( 'Full Post', 'magzimum' ),
      'excerpt-thumb' => esc_html__( 'Excerpt and Thumbnail', 'magzimum' ),
    );
    $output = apply_filters( 'magzimum_filter_archive_layout_options', $choices );
    if ( ! empty( $output ) ) {
      ksort( $output );
    }
    return $output;


  }

endif;


if( ! function_exists( 'magzimum_get_image_sizes_options' ) ) :

  /**
   * Returns archive layout options.
   *
   * @since Magzimum 1.0
   */
  function magzimum_get_image_sizes_options( $add_disable = true ){

    global $_wp_additional_image_sizes;
    $get_intermediate_image_sizes = get_intermediate_image_sizes();
    $choices = array();
    if ( true == $add_disable ) {
      $choices['disable'] = esc_html__( 'No Image', 'magzimum' );
    }
    foreach ( array( 'thumbnail', 'medium', 'large' ) as $key => $_size ) {
      $choices[ $_size ] = $_size . ' ('. get_option( $_size . '_size_w' ) . 'x' . get_option( $_size . '_size_h' ) . ')';
    }
    $choices['full'] = esc_html__( 'full (original)', 'magzimum' );
    if ( ! empty( $_wp_additional_image_sizes ) && is_array( $_wp_additional_image_sizes ) ) {

      foreach ($_wp_additional_image_sizes as $key => $size ) {
        $choices[ $key ] = $key . ' ('. $size['width'] . 'x' . $size['height'] . ')';
      }

    }
    return $choices;

  }

endif;



if( ! function_exists( 'magzimum_get_single_image_alignment_options' ) ) :

  /**
   * Returns single image options.
   *
   * @since Magzimum 1.0
   */
  function magzimum_get_single_image_alignment_options(){

    $choices = array(
      'none'   => esc_html__( 'None', 'magzimum' ),
      'left'   => esc_html__( 'Left', 'magzimum' ),
      'center' => esc_html__( 'Center', 'magzimum' ),
      'right'  => esc_html__( 'Right', 'magzimum' ),
    );
    return $choices;

  }

endif;


if( ! function_exists( 'magzimum_get_pagination_type_options' ) ) :

  /**
   * Returns pagination type options.
   *
   * @since Magzimum 1.0
   */
  function magzimum_get_pagination_type_options(){

    $choices = array(
      'default' => esc_html__( 'Default (Older Post / Newer Post)', 'magzimum' ),
      'numeric' => esc_html__( 'Numeric', 'magzimum' ),
    );
    return $choices;

  }

endif;


if( ! function_exists( 'magzimum_get_breadcrumb_type_options' ) ) :

  /**
   * Returns breadcrumb type options.
   *
   * @since Magzimum 1.0
   */
  function magzimum_get_breadcrumb_type_options(){

    $choices = array(
      'disabled' => esc_html__( 'Disabled', 'magzimum' ),
      'simple'   => esc_html__( 'Simple', 'magzimum' ),
      'advanced' => esc_html__( 'Advanced', 'magzimum' ),
    );
    return $choices;

  }

endif;


if( ! function_exists( 'magzimum_get_featured_status_options' ) ) :

  /**
   * Returns featured status options.
   *
   * @since Magzimum 1.0
   */
  function magzimum_get_featured_status_options(){

    $choices = array(
      'home-page-only' => esc_html__( 'Home Page Only', 'magzimum' ),
      'home-blog-page' => esc_html__( 'Home Page + Blog Page', 'magzimum' ),
      'entire-site'    => esc_html__( 'Entire Site', 'magzimum' ),
      'disabled'       => esc_html__( 'Disabled', 'magzimum' ),
    );
    $output = apply_filters( 'magzimum_filter_featured_status_options', $choices );
    if ( ! empty( $output ) ) {
      ksort( $output );
    }
    return $output;

  }

endif;


if( ! function_exists( 'magzimum_get_featured_content_type_options' ) ) :

  /**
   * Returns the featured content type options.
   *
   * @since Magzimum 1.0
   */
  function magzimum_get_featured_content_type_options(){

    $choices = array(
      'featured-category' => esc_html__( 'Featured Category', 'magzimum' ),
    );
    $output = apply_filters( 'magzimum_filter_featured_content_type', $choices );
    if ( ! empty( $output ) ) {
      ksort( $output );
    }
    return $output;


  }

endif;

if( ! function_exists( 'magzimum_is_social_menu_active' ) ) :

  /**
   * Check if social menu is active.
   *
   * @since magzimum 1.0.0
   * @return bool true/false
   */
  function magzimum_is_social_menu_active(){

    $is_menu_set = false;
    // Fetch nav
    $nav_menu_locations = get_nav_menu_locations();
    if ( isset( $nav_menu_locations['social'] ) && absint( $nav_menu_locations['social'] ) > 0 ) {
      $is_menu_set = true;
    }

    return $is_menu_set;

  }

endif;

Youez - 2016 - github.com/yon3zu
LinuXploit