File manager - Edit - C:/inetpub/vhosts/alsawaripharma.com/icte-dubai.com/en/wp-content/themes/uni-education/inc/options.php
Back
<?php /** * Options functions * * @package uni_education */ if ( ! function_exists( 'uni_education_show_options' ) ) : /** * List of custom Switch Control options * @return array List of switch control options. */ function uni_education_show_options() { $arr = array( 'on' => esc_html__( 'Yes', 'uni-education' ), 'off' => esc_html__( 'No', 'uni-education' ) ); return apply_filters( 'uni_education_show_options', $arr ); } endif; if ( ! function_exists( 'uni_education_page_choices' ) ) : /** * List of pages for page choices. * @return Array Array of page ids and name. */ function uni_education_page_choices() { $pages = get_pages(); $choices = array(); $choices[0] = esc_html__( 'None', 'uni-education' ); foreach ( $pages as $page ) { $choices[ $page->ID ] = $page->post_title; } return $choices; } endif; if ( ! function_exists( 'uni_education_post_choices' ) ) : /** * List of posts for post choices. * @return Array Array of post ids and name. */ function uni_education_post_choices() { $posts = get_posts( array( 'numberposts' => -1 ) ); $choices = array(); $choices[0] = esc_html__( 'None', 'uni-education' ); foreach ( $posts as $post ) { $choices[ $post->ID ] = $post->post_title; } return $choices; } endif; if ( ! function_exists( 'uni_education_category_choices' ) ) : /** * List of categories for category choices. * @return Array Array of category ids and name. */ function uni_education_category_choices() { $args = array( 'type' => 'post', 'child_of' => 0, 'parent' => '', 'orderby' => 'name', 'order' => 'ASC', 'hide_empty' => 0, 'hierarchical' => 0, 'taxonomy' => 'category', ); $categories = get_categories( $args ); $choices = array(); $choices[0] = esc_html__( 'None', 'uni-education' ); foreach ( $categories as $category ) { $choices[ $category->term_id ] = $category->name; } return $choices; } endif; if ( ! function_exists( 'uni_education_site_layout' ) ) : /** * site layout * @return array site layout */ function uni_education_site_layout() { $uni_education_site_layout = array( 'full' => get_template_directory_uri() . '/assets/uploads/full.png', 'boxed' => get_template_directory_uri() . '/assets/uploads/boxed.png', ); $output = apply_filters( 'uni_education_site_layout', $uni_education_site_layout ); return $output; } endif; if ( ! function_exists( 'uni_education_sidebar_position' ) ) : /** * Sidebar position * @return array Sidebar position */ function uni_education_sidebar_position() { $uni_education_sidebar_position = array( 'right-sidebar' => get_template_directory_uri() . '/assets/uploads/right.png', 'left-sidebar' => get_template_directory_uri() . '/assets/uploads/left.png', 'no-sidebar' => get_template_directory_uri() . '/assets/uploads/full.png', ); $output = apply_filters( 'uni_education_sidebar_position', $uni_education_sidebar_position ); return $output; } endif; if ( ! function_exists( 'uni_education_get_spinner_list' ) ) : /** * List of spinner icons options. * @return array List of all spinner icon options. */ function uni_education_get_spinner_list() { $arr = array( 'spinner-two-way' => esc_html__( 'Two Way', 'uni-education' ), 'spinner-dots' => esc_html__( 'Dots', 'uni-education' ), ); return apply_filters( 'uni_education_spinner_list', $arr ); } endif;
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Generation time: 0.1 |
proxy
|
phpinfo
|
Settings