getOptionValue( 'google_maps_api_key' ); $google_maps_extensions = ''; $google_maps_extensions_array = apply_filters( 'calla_elated_google_maps_extensions_array', array() ); if ( ! empty( $google_maps_extensions_array ) ) { $google_maps_extensions .= '&libraries='; $google_maps_extensions .= implode( ',', $google_maps_extensions_array ); } if ( ! empty( $google_maps_api_key ) ) { wp_enqueue_script( 'calla-elated-admin-maps', '//maps.googleapis.com/maps/api/js?key=' . esc_attr( $google_maps_api_key ) . $google_maps_extensions, array(), false, true ); wp_enqueue_script( 'jquery.geocomplete', get_template_directory_uri() . '/framework/admin/assets/js/jquery.geocomplete.min.js', array('eltdf-admin-maps'), false, true ); } } wp_enqueue_script( 'bootstrap', get_template_directory_uri() . '/framework/admin/assets/js/bootstrap.min.js', array(), false, true ); wp_enqueue_script( 'bootstrap-select', get_template_directory_uri() . '/framework/admin/assets/js/bootstrap-select.min.js', array(), false, true ); wp_enqueue_script( 'select2', get_template_directory_uri() . '/framework/admin/assets/js/select2.min.js', array(), false, true ); wp_enqueue_script( 'eltdf-ui-admin', get_template_directory_uri() . '/framework/admin/assets/js/eltdf-ui/eltdf-ui.js', array(), false, true ); wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/framework/admin/assets/css/font-awesome/css/font-awesome.min.css' ); wp_enqueue_style( 'select2', get_template_directory_uri() . '/framework/admin/assets/css/select2.min.css' ); /** * @see CallaElatedSkinAbstract::registerScripts - hooked with 10 * @see CallaElatedSkinAbstract::registerStyles - hooked with 10 */ do_action( 'calla_elated_admin_scripts_init' ); } add_action( 'admin_init', 'calla_elated_admin_scripts_init' ); } if ( ! function_exists( 'calla_elated_enqueue_admin_styles' ) ) { /** * Function that enqueues styles for options page */ function calla_elated_enqueue_admin_styles() { wp_enqueue_style( 'wp-color-picker' ); /** * @see CallaElatedSkinAbstract::enqueueStyles - hooked with 10 */ do_action( 'calla_elated_enqueue_admin_styles' ); } } if ( ! function_exists( 'calla_elated_enqueue_admin_scripts' ) ) { /** * Function that enqueues styles for options page */ function calla_elated_enqueue_admin_scripts() { wp_enqueue_script( 'wp-color-picker' ); wp_enqueue_script( 'jquery-ui-datepicker' ); wp_enqueue_script( 'jquery-ui-accordion' ); wp_enqueue_script( 'common' ); wp_enqueue_script( 'wp-lists' ); wp_enqueue_script( 'postbox' ); wp_enqueue_media(); wp_enqueue_script( 'calla-elated-dependence', get_template_directory_uri() . '/framework/admin/assets/js/eltdf-ui/eltdf-dependence.js', array(), false, true ); wp_enqueue_script( 'calla-elated-twitter-connect', get_template_directory_uri() . '/framework/admin/assets/js/eltdf-ui/eltdf-twitter-connect.js', array(), false, true ); /** * @see CallaElatedSkinAbstract::enqueueScripts - hooked with 10 */ do_action( 'calla_elated_enqueue_admin_scripts' ); } } if ( ! function_exists( 'calla_elated_enqueue_meta_box_styles' ) ) { /** * Function that enqueues styles for meta boxes */ function calla_elated_enqueue_meta_box_styles() { wp_enqueue_style( 'wp-color-picker' ); /** * @see CallaElatedSkinAbstract::enqueueStyles - hooked with 10 */ do_action( 'calla_elated_enqueue_meta_box_styles' ); } } if ( ! function_exists( 'calla_elated_enqueue_meta_box_scripts' ) ) { /** * Function that enqueues scripts for meta boxes */ function calla_elated_enqueue_meta_box_scripts() { wp_enqueue_script( 'wp-color-picker' ); wp_enqueue_script( 'jquery-ui-datepicker' ); wp_enqueue_script( 'jquery-ui-accordion' ); wp_enqueue_script( 'jquery-ui-sortable' ); wp_enqueue_script( 'common' ); wp_enqueue_script( 'wp-lists' ); wp_enqueue_script( 'postbox' ); wp_enqueue_media(); wp_enqueue_script( 'calla-elated-dependence', get_template_directory_uri() . '/framework/admin/assets/js/eltdf-ui/eltdf-dependence.js', array(), false, true ); wp_enqueue_script( 'calla-elated-repeater', get_template_directory_uri() . '/framework/admin/assets/js/eltdf-ui/eltdf-ui-repeater.js', array(), false, true ); /** * @see CallaElatedSkinAbstract::enqueueScripts - hooked with 10 */ do_action( 'calla_elated_enqueue_meta_box_scripts' ); } } if ( ! function_exists( 'calla_elated_enqueue_nav_menu_script' ) ) { /** * Function that enqueues styles and scripts necessary for menu administration page. * It checks $hook variable * * @param $hook string current page hook to check */ function calla_elated_enqueue_nav_menu_script( $hook ) { if ( $hook == 'nav-menus.php' ) { wp_enqueue_script( 'calla-elated-nav-menu', get_template_directory_uri() . '/framework/admin/assets/js/eltdf-ui/eltdf-nav-menu.js' ); wp_enqueue_style( 'calla-elated-nav-menu', get_template_directory_uri() . '/framework/admin/assets/css/eltdf-nav-menu.css' ); } } add_action( 'admin_enqueue_scripts', 'calla_elated_enqueue_nav_menu_script' ); } if ( ! function_exists( 'calla_elated_enqueue_widgets_admin_script' ) ) { /** * Function that enqueues styles and scripts for admin widgets page. * * @param $hook string current page hook to check */ function calla_elated_enqueue_widgets_admin_script( $hook ) { if ( $hook == 'widgets.php' ) { wp_enqueue_script( 'wp-color-picker' ); wp_enqueue_script( 'eltdf-dependence', get_template_directory_uri() . '/framework/admin/assets/js/eltdf-ui/eltdf-dependence.js', array(), false, true ); wp_enqueue_script( 'eltdf-widgets-dependence', get_template_directory_uri() . '/framework/admin/assets/js/eltdf-ui/eltdf-widget-dependence.js', array(), false, true ); } } add_action( 'admin_enqueue_scripts', 'calla_elated_enqueue_widgets_admin_script' ); } if ( ! function_exists( 'calla_elated_enqueue_taxonomy_script' ) ) { /** * Function that enqueues styles and scripts necessary for menu administration page. * It checks $hook variable * * @param $hook string current page hook to check */ function calla_elated_enqueue_taxonomy_script( $hook ) { if ( $hook == 'edit-tags.php' || $hook == 'term.php' ) { wp_enqueue_script( 'select2' ); wp_enqueue_style( 'select2', get_template_directory_uri() . '/framework/admin/assets/css/select2.min.css' ); } } add_action( 'admin_enqueue_scripts', 'calla_elated_enqueue_taxonomy_script' ); } if ( ! function_exists( 'calla_elated_dashboard_page' ) ) { /** * Function that checks whether Dashboard assets needs to be loaded. * */ function calla_elated_dashboard_page() { return is_page_template('user-dashboard.php'); } } if ( ! function_exists( 'calla_elated_init_theme_options_array' ) ) { /** * Function that merges $calla_elated_options and default options array into one array. * * @see array_merge() */ function calla_elated_init_theme_options_array() { global $calla_elated_options, $calla_elated_Framework; $db_options = get_option( 'eltdf_options_calla' ); //does eltd_options exists in db? if ( is_array( $db_options ) ) { //merge with default options $calla_elated_options = array_merge( $calla_elated_Framework->eltdOptions->options, get_option( 'eltdf_options_calla' ) ); } else { //options don't exists in db, take default ones $calla_elated_options = $calla_elated_Framework->eltdOptions->options; } } add_action( 'calla_elated_after_options_map', 'calla_elated_init_theme_options_array', 0 ); } if ( ! function_exists( 'calla_elated_init_theme_options' ) ) { /** * Function that sets $calla_elated_options variable if it does'nt exists */ function calla_elated_init_theme_options() { global $calla_elated_options; global $calla_elated_Framework; if ( isset( $calla_elated_options['reset_to_defaults'] ) ) { if ( $calla_elated_options['reset_to_defaults'] == 'yes' ) { delete_option( "eltdf_options_calla" ); } } if ( ! get_option( "eltdf_options_calla" ) ) { add_option( "eltdf_options_calla", $calla_elated_Framework->eltdOptions->options ); $calla_elated_options = $calla_elated_Framework->eltdOptions->options; } } } if ( ! function_exists( 'calla_elated_register_theme_settings' ) ) { /** * Function that registers setting that will be used to store theme options */ function calla_elated_register_theme_settings() { register_setting( 'calla_elated_theme_menu', 'eltd_options' ); } add_action( 'admin_init', 'calla_elated_register_theme_settings' ); } if ( ! function_exists( 'calla_elated_get_admin_tab' ) ) { /** * Helper function that returns current tab from url. * @return null */ function calla_elated_get_admin_tab() { return isset( $_GET['page'] ) ? calla_elated_strafter( $_GET['page'], 'tab' ) : null; } } if ( ! function_exists( 'calla_elated_strafter' ) ) { /** * Function that returns string that comes after found string * * @param $string string where to search * @param $substring string what to search for * * @return null|string string that comes after found string */ function calla_elated_strafter( $string, $substring ) { $pos = strpos( $string, $substring ); if ( $pos === false ) { return null; } return ( substr( $string, $pos + strlen( $substring ) ) ); } } if ( ! function_exists( 'calla_elated_save_options' ) ) { /** * Function that saves theme options to db. * It hooks to ajax wp_ajax_eltdf_save_options action. */ function calla_elated_save_options() { global $calla_elated_options; if ( current_user_can( 'administrator' ) ) { $_REQUEST = stripslashes_deep( $_REQUEST ); unset( $_REQUEST['action'] ); check_ajax_referer( 'eltdf_ajax_save_nonce', 'eltdf_ajax_save_nonce' ); $calla_elated_options = array_merge( $calla_elated_options, $_REQUEST ); update_option( 'eltdf_options_calla', $calla_elated_options ); do_action( 'calla_elated_after_theme_option_save' ); echo esc_html__( 'Saved', 'calla' ); die(); } } add_action( 'wp_ajax_calla_elated_save_options', 'calla_elated_save_options' ); } if ( ! function_exists( 'calla_elated_meta_box_add' ) ) { /** * Function that adds all defined meta boxes. * It loops through array of created meta boxes and adds them */ function calla_elated_meta_box_add() { global $calla_elated_Framework; foreach ( $calla_elated_Framework->eltdMetaBoxes->metaBoxes as $key => $box ) { $hidden = false; if ( ! empty( $box->hidden_property ) ) { foreach ( $box->hidden_values as $value ) { if ( calla_elated_option_get_value( $box->hidden_property ) == $value ) { $hidden = true; } } } if ( is_string( $box->scope ) ) { $box->scope = array( $box->scope ); } if ( is_array( $box->scope ) && count( $box->scope ) ) { foreach ( $box->scope as $screen ) { calla_elated_create_meta_box_handler( $box, $key, $screen ); if ( $hidden ) { add_filter( 'postbox_classes_' . $screen . '_eltdf-meta-box-' . $key, 'calla_elated_meta_box_add_hidden_class' ); } } } } if ( calla_elated_is_wp_gutenberg_installed() || calla_elated_is_gutenberg_installed() ) { calla_elated_enqueue_meta_box_styles(); calla_elated_enqueue_meta_box_scripts(); } else { add_action( 'admin_enqueue_scripts', 'calla_elated_enqueue_meta_box_styles' ); add_action( 'admin_enqueue_scripts', 'calla_elated_enqueue_meta_box_scripts' ); } } } if ( ! function_exists( 'calla_elated_meta_box_save' ) ) { /** * Function that saves meta box to postmeta table * * @param $post_id int id of post that meta box is being saved * @param $post WP_Post current post object */ function calla_elated_meta_box_save( $post_id, $post ) { global $calla_elated_Framework; $nonces_array = array(); $meta_boxes = calla_elated_framework()->eltdMetaBoxes->getMetaBoxesByScope( $post->post_type ); if ( is_array( $meta_boxes ) && count( $meta_boxes ) ) { foreach ( $meta_boxes as $meta_box ) { $nonces_array[] = 'calla_elated_meta_box_' . $meta_box->name . '_save'; } } if ( is_array( $nonces_array ) && count( $nonces_array ) ) { foreach ( $nonces_array as $nonce ) { if ( ! isset( $_POST[ $nonce ] ) || ! wp_verify_nonce( $_POST[ $nonce ], $nonce ) ) { return; } } } $postTypes = apply_filters( 'calla_elated_meta_box_post_types_save', array( 'post', 'page' ) ); if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return; } if ( ! isset( $_POST['_wpnonce'] ) ) { return; } if ( ! current_user_can( 'edit_post', $post_id ) ) { return; } if ( ! in_array( $post->post_type, $postTypes ) ) { return; } foreach ( $calla_elated_Framework->eltdMetaBoxes->options as $key => $box ) { if ( isset( $_POST[ $key ] ) && trim( $_POST[ $key ] !== '' ) ) { $value = $_POST[ $key ]; update_post_meta( $post_id, $key, $value ); } else { delete_post_meta( $post_id, $key ); } } } add_action( 'save_post', 'calla_elated_meta_box_save', 1, 2 ); } if ( ! function_exists( 'calla_elated_render_meta_box' ) ) { /** * Function that renders meta box * * @param $post WP_Post post object * @param $metabox array array of current meta box parameters */ function calla_elated_render_meta_box( $post, $metabox ) { ?>
render(); ?> name . '_save', 'calla_elated_meta_box_' . $metabox['args']['box']->name . '_save' ); ?>
getIconCollection( $icon_pack ); if ( $collections_object ) { $icons = $collections_object->getIconsArray(); if ( is_array( $icons ) && count( $icons ) ) { foreach ( $icons as $key => $icon ) { $html .= ''; } } } echo wp_kses( $html, array( 'option' => array( 'value' => true ) ) ); } add_action( 'wp_ajax_update_admin_nav_icon_options', 'calla_elated_generate_icon_pack_options' ); } if ( ! function_exists( 'calla_elated_save_dismisable_notice' ) ) { /** * Updates user meta with dismisable notice. Hooks to admin_init action * in order to check this on every page request in admin */ function calla_elated_save_dismisable_notice() { if ( is_admin() && ! empty( $_GET['eltd_dismis_notice'] ) ) { $notice_id = sanitize_key( $_GET['eltd_dismis_notice'] ); $current_user_id = get_current_user_id(); update_user_meta( $current_user_id, 'dismis_' . $notice_id, 1 ); } } add_action( 'admin_init', 'calla_elated_save_dismisable_notice' ); } if ( ! function_exists( 'calla_elated_ajax_status' ) ) { /** * Function that return status from ajax functions */ function calla_elated_ajax_status( $status, $message, $data = null ) { $response = array( 'status' => $status, 'message' => $message, 'data' => $data ); $output = json_encode( $response ); exit( $output ); } } if ( ! function_exists( 'calla_elated_hook_twitter_request_ajax' ) ) { /** * Wrapper function for obtaining twitter request token. * Hooks to wp_ajax_eltd_twitter_obtain_request_token ajax action * * @see ElatedTwitterApi::obtainRequestToken() */ function calla_elated_hook_twitter_request_ajax() { CallaTwitterApi::getInstance()->obtainRequestToken(); } add_action( 'wp_ajax_eltd_twitter_obtain_request_token', 'calla_elated_hook_twitter_request_ajax' ); } if ( ! function_exists( 'calla_elated_set_admin_google_api_class' ) ) { function calla_elated_set_admin_google_api_class( $classes ) { $google_map_api = calla_elated_options()->getOptionValue( 'google_maps_api_key' ); if ( empty( $google_map_api ) ) { $classes .= ' eltdf-empty-google-api'; } return $classes; } add_filter( 'admin_body_class', 'calla_elated_set_admin_google_api_class' ); } if ( ! function_exists( 'calla_elated_comment' ) ) { /** * Function which modify default wordpress comments * * @return comments html */ function calla_elated_comment( $comment, $args, $depth ) { $GLOBALS['comment'] = $comment; global $post; $is_pingback_comment = $comment->comment_type == 'pingback'; $is_author_comment = $post->post_author == $comment->user_id; $comment_class = 'eltdf-comment clearfix'; if ( $is_author_comment ) { $comment_class .= ' eltdf-post-author-comment'; } if ( $is_pingback_comment ) { $comment_class .= ' eltdf-pingback-comment'; } ?>
  • esc_html__( 'reply', 'calla' ), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); edit_comment_link( esc_html__( 'edit', 'calla' ) ); ?>
    eltdTaxonomyOptions->taxonomyOptions as $key => $fields ) { add_action( $fields->scope . '_add_form_fields', 'calla_elated_taxonomy_fields_display_add', 10, 2 ); } } add_action( 'after_setup_theme', 'calla_elated_taxonomy_fields_add', 11 ); } if ( ! function_exists( 'calla_elated_taxonomy_fields_edit' ) ) { function calla_elated_taxonomy_fields_edit() { global $calla_elated_Framework; foreach ( $calla_elated_Framework->eltdTaxonomyOptions->taxonomyOptions as $key => $fields ) { add_action( $fields->scope . '_edit_form_fields', 'calla_elated_taxonomy_fields_display_edit', 10, 2 ); } } add_action( 'after_setup_theme', 'calla_elated_taxonomy_fields_edit', 11 ); } if ( ! function_exists( 'calla_elated_taxonomy_fields_display_add' ) ) { function calla_elated_taxonomy_fields_display_add( $taxonomy ) { global $calla_elated_Framework; foreach ( $calla_elated_Framework->eltdTaxonomyOptions->taxonomyOptions as $key => $fields ) { if ( $taxonomy == $fields->scope ) { $fields->render(); } } } } if ( ! function_exists( 'calla_elated_taxonomy_fields_display_edit' ) ) { function calla_elated_taxonomy_fields_display_edit( $term, $taxonomy ) { global $calla_elated_Framework; foreach ( $calla_elated_Framework->eltdTaxonomyOptions->taxonomyOptions as $key => $fields ) { if ( $taxonomy == $fields->scope ) { $fields->render(); } } } } if ( ! function_exists( 'calla_elated_save_taxonomy_custom_fields' ) ) { function calla_elated_save_taxonomy_custom_fields( $term_id ) { $fields = apply_filters( 'calla_elated_taxonomy_fields', array() ); foreach ( $fields as $value ) { if ( isset( $_POST[ $value ] ) && '' !== $_POST[ $value ] ) { add_term_meta( $term_id, $value, $_POST[ $value ] ); } } } add_action( 'created_term', 'calla_elated_save_taxonomy_custom_fields', 10, 2 ); } if ( ! function_exists( 'calla_elated_update_taxonomy_custom_fields' ) ) { function calla_elated_update_taxonomy_custom_fields( $term_id ) { $fields = apply_filters( 'calla_elated_taxonomy_fields', array() ); foreach ( $fields as $value ) { if ( isset( $_POST[ $value ] ) && '' !== $_POST[ $value ] ) { update_term_meta( $term_id, $value, $_POST[ $value ] ); } else { update_term_meta( $term_id, $value, '' ); } } } add_action( 'edited_term', 'calla_elated_update_taxonomy_custom_fields', 10, 2 ); } if ( ! function_exists( 'calla_elated_tax_add_script' ) ) { function calla_elated_tax_add_script() { wp_enqueue_media(); wp_enqueue_script( 'calla-elated-tax-js', ELATED_FRAMEWORK_ROOT . '/admin/assets/js/eltdf-ui/eltdf-tax-custom-fields.js' ); } add_action( 'admin_enqueue_scripts', 'calla_elated_tax_add_script' ); } /** Taxonomy Delete Image **/ if ( ! function_exists( 'calla_elated_tax_del_image' ) ) { function calla_elated_tax_del_image() { /** If we don't have a term_id, bail out **/ if ( ! isset( $_GET['term_id'] ) ) { esc_html_e( 'Not Set or Empty', 'calla' ); exit; } $field_name = $_GET['field_name']; $term_id = $_GET['term_id']; $imageID = get_term_meta( $term_id, $field_name, true ); // Get our attachment ID if ( is_numeric( $imageID ) ) { // Verify that the attachment ID is indeed a number wp_delete_attachment( $imageID ); // Delete our image delete_term_meta( $term_id, $field_name );// Delete our image meta exit; } esc_html_e( 'Contact Administrator', 'calla' ); // If we've reached this point, something went wrong - enable debugging exit; } add_action( 'wp_ajax_calla_elated_tax_del_image', 'calla_elated_tax_del_image' ); } /* Taxonomy custom fields functions - END */ /* User custom fields functions - START */ if ( ! function_exists( 'calla_elated_user_add_script' ) ) { function calla_elated_user_add_script() { wp_enqueue_script( 'calla-elated-user-js', ELATED_FRAMEWORK_ROOT . '/admin/assets/js/eltdf-ui/eltdf-user-custom-fields.js' ); } add_action( 'admin_enqueue_scripts', 'calla_elated_user_add_script' ); } if ( ! function_exists( 'calla_elated_init_custom_user_fields' ) ) { function calla_elated_init_custom_user_fields() { do_action( 'calla_elated_custom_user_fields' ); } add_action( 'after_setup_theme', 'calla_elated_init_custom_user_fields' ); } if ( ! function_exists( 'calla_elated_user_fields_edit' ) ) { function calla_elated_user_fields_edit($user) { global $calla_elated_Framework; foreach ( $calla_elated_Framework->eltdUserOptions->userOptions as $key => $fields ) { $display_fields = false; foreach ($user->roles as $role) { if (in_array($role, $fields->scope)){ $display_fields = true; break; } } if ( $display_fields ) { $fields->render(); } } } add_action('show_user_profile', 'calla_elated_user_fields_edit'); add_action('edit_user_profile', 'calla_elated_user_fields_edit'); } if ( ! function_exists( 'calla_elated_save_user_fields' ) ) { function calla_elated_save_user_fields($user_id) { $fields = apply_filters( 'calla_elated_user_fields', array() ); foreach ( $fields as $value ) { if ( isset( $_POST[ $value ] ) && '' !== $_POST[ $value ] ) { update_user_meta( $user_id, $value, $_POST[ $value ] ); } } } add_action( 'personal_options_update', 'calla_elated_save_user_fields'); add_action( 'edit_user_profile_update', 'calla_elated_save_user_fields'); } /* User custom fields functions - END */ /** User Delete Image **/ if ( ! function_exists( 'calla_elated_user_del_image' ) ) { function calla_elated_user_del_image() { /** If we don't have a term_id, bail out **/ if ( ! isset( $_GET['user_id'] ) ) { esc_html_e( 'Not Set or Empty', 'calla' ); exit; } $field_name = $_GET['field_name']; $user_id = $_GET['user_id']; $imageID = get_user_meta( $user_id, $field_name, true );; // Get our attachment ID if ( is_numeric( $imageID ) ) { // Verify that the attachment ID is indeed a number delete_user_meta( $user_id, $field_name );// Delete our image meta exit; } esc_html_e( 'Contact Administrator', 'calla' ); // If we've reached this point, something went wrong - enable debugging exit; } add_action( 'wp_ajax_calla_elated_user_del_image', 'calla_elated_user_del_image' ); } ?>