$action, 'license' => $license, 'item_id' => $item, // the ID of our product in EDD 'url' => home_url() ); // Call the custom API. //$response = wp_remote_get( add_query_arg( $api_params, $url ), array( 'timeout' => 15, 'sslverify' => false ) ); // Updated 2.8.7 $response = wp_remote_post( ALM_STORE_URL, array( 'timeout' => 15, 'sslverify' => false, 'body' => $api_params ) ); // make sure the response came back okay if ( is_wp_error( $response ) ) return false; $license_data = $response['body']; $license_data = json_decode($license_data); // decode the license data $return["success"] = $license_data->success; $msg = ''; if($type === 'activate'){ $return["license_limit"] = $license_data->license_limit; $return["expires"] = $license_data->expires; $return["site_count"] = $license_data->site_count; $return["activations_left"] = $license_data->activations_left; $return["license"] = $license_data->license; $return["item_name"] = $license_data->item_name; if($license_data->activations_left === 0 && $license_data->success === false){ $msg = 'Sorry, but you are out of available licenses ('. $license_data->license_limit .' / '. $license_data->site_count .'). Please visit the '.$license_data->item_name.' page to add additional licenses.'; } } $return["msg"] = $msg; update_option( $option_status, $license_data->license); update_option( $option_key, $license ); echo json_encode($return); die(); } else { echo __('You don\'t belong here.', ALM_NAME); } } /* * alm_get_layout * Get layout and return value to repeater template * * @since 2.8.3 * @updated 2.14.0 */ function alm_get_layout(){ if (current_user_can( 'edit_theme_options' )){ $nonce = sanitize_text_field($_GET["nonce"]); $type = sanitize_text_field($_GET["type"]); $custom = sanitize_text_field($_GET["custom"]); // Check our nonce, if they don't match then bounce! if (! wp_verify_nonce( $nonce, 'alm_repeater_nonce' )) die('Error - unable to verify nonce, please try again.'); if($type === 'default'){ // Default Layout $content = file_get_contents(ALM_PATH.'admin/includes/layout/'.$type.'.php'); }else{ // Custom Layout if($custom == 'true'){ $dir = 'alm_layouts'; if(is_child_theme()){ $path = get_stylesheet_directory().'/'. $dir .'/' .$type; // if child theme does not have the layout, check the parent theme if(!file_exists($path)){ $path = get_template_directory().'/'. $dir .'/' .$type; } } else{ $path = get_template_directory().'/'. $dir .'/' .$type; } $content = file_get_contents($path); } // Layouts Add-on else { $content = file_get_contents(ALM_LAYOUTS_PATH.'layouts/'.$type.'.php'); } } $return["value"] = $content; echo json_encode($return); }else { echo __('You don\'t belong here.', ALM_NAME); } die(); } /* * alm_get_layouts * Get the list of layout templates * * @since 2.8.7 */ function alm_get_layouts(){ // do_action include( ALM_PATH . 'admin/includes/components/layout-list.php'); } /* * alm_admin_vars * Create admin variables and ajax nonce * * @since 2.0.0 */ function alm_admin_vars() { ?> get_col( "SELECT blog_id FROM $wpdb->blogs" ); // Loop all blogs and run update routine foreach ( $blog_ids as $blog_id ) { switch_to_blog( $blog_id ); alm_update_template_files(); restore_current_blog(); } } else { alm_update_template_files(); } update_option( "alm_version", ALM_VERSION ); // Update the WP Option tbl with the new version num } /** * alm_update_template_files * Update routine for template files * * @since 2.7.2 */ function alm_update_template_files(){ global $wpdb; $table_name = $wpdb->prefix . "alm"; $blog_id = $wpdb->blogid; // Get all templates ($rows) where name is 'default' $rows = $wpdb->get_results("SELECT * FROM $table_name WHERE name = 'default'"); if($rows){ foreach( $rows as $row ) { // Loop $rows $data = $wpdb->get_var("SELECT repeaterDefault FROM $table_name WHERE name = 'default'"); if($blog_id > 1){ $dir = ALM_PATH. 'core/repeater/'. $blog_id; if( !is_dir($dir) ){ mkdir($dir); } $f = ALM_PATH. 'core/repeater/'. $blog_id .'/default.php'; }else{ $f = ALM_PATH. 'core/repeater/default.php'; } try { $o = fopen($f, 'w+'); //Open file if ( !$o ) { throw new Exception(__('[Ajax Load More] Error opening default repeater template - Please check your file path and ensure your server is configured to allow Ajax Load More to read and write files within the /ajax-load-more/core/repeater directory', 'ajax-load-more')); } $w = fwrite($o, $data); //Save the file if ( !$w ) { throw new Exception(__('[Ajax Load More] Error updating default repeater template - Please check your file path and ensure your server is configured to allow Ajax Load More to read and write files within the /ajax-load-more/core/repeater directory.', 'ajax-load-more')); } fclose($o); //now close it } catch ( Exception $e ) { // Display error message in console. if(!isset($options['_alm_error_notices']) || $options['_alm_error_notices'] == '1'){ echo ''; } } } } } /** * alm_admin_menu * Create Admin Menu * * @since 2.0.0 */ add_action( 'admin_menu', 'alm_admin_menu' ); function alm_admin_menu() { $icon = 'dashicons-plus-alt'; $icon = ALM_ADMIN_URL . "/img/alm-logo-16x16.svg"; $alm_page = add_menu_page( 'Ajax Load More', 'Ajax Load More', 'edit_theme_options', 'ajax-load-more', 'alm_settings_page', $icon ); $alm_settings_page = add_submenu_page( 'ajax-load-more', 'Settings', 'Settings', 'edit_theme_options', 'ajax-load-more', 'alm_settings_page' ); $alm_template_page = add_submenu_page( 'ajax-load-more', 'Repeater Templates', 'Repeater Templates', 'edit_theme_options', 'ajax-load-more-repeaters', 'alm_repeater_page' ); $alm_shortcode_page = add_submenu_page( 'ajax-load-more', 'Shortcode Builder', 'Shortcode Builder', 'edit_theme_options', 'ajax-load-more-shortcode-builder', 'alm_shortcode_builder_page' ); $alm_addons_page = add_submenu_page( 'ajax-load-more', 'Add-ons', 'Add-ons', 'edit_theme_options', 'ajax-load-more-add-ons', 'alm_add_ons_page' ); $alm_extensions_page = add_submenu_page( 'ajax-load-more', 'Extensions', 'Extensions', 'edit_theme_options', 'ajax-load-more-extensions', 'alm_extensions_page' ); $alm_help_page = add_submenu_page( 'ajax-load-more', 'Help', 'Help', 'edit_theme_options', 'ajax-load-more-help', 'alm_help_page' ); $alm_licenses_page = add_submenu_page( 'ajax-load-more', 'Licenses', 'Licenses', 'edit_theme_options', 'ajax-load-more-licenses', 'alm_licenses_page' ); if(has_action('alm_cache_installed')){ $alm_cache_page = add_submenu_page( 'ajax-load-more', 'Cache', 'Cache', 'edit_theme_options', 'ajax-load-more-cache', 'alm_cache_page' ); add_action( 'load-' . $alm_cache_page, 'alm_load_admin_js' ); add_action( 'load-' . $alm_cache_page, 'alm_load_cache_admin_js' ); add_action( 'load-' . $alm_cache_page, 'alm_set_admin_nonce' ); } //Add our admin scripts add_action( 'load-' . $alm_settings_page, 'alm_load_admin_js' ); add_action( 'load-' . $alm_settings_page, 'alm_set_admin_nonce' ); add_action( 'load-' . $alm_template_page, 'alm_load_admin_js' ); add_action( 'load-' . $alm_template_page, 'alm_set_admin_nonce' ); add_action( 'load-' . $alm_shortcode_page, 'alm_load_admin_js' ); add_action( 'load-' . $alm_shortcode_page, 'alm_set_admin_nonce' ); add_action( 'load-' . $alm_help_page, 'alm_load_admin_js' ); add_action( 'load-' . $alm_help_page, 'alm_set_admin_nonce' ); add_action( 'load-' . $alm_addons_page, 'alm_load_admin_js' ); add_action( 'load-' . $alm_addons_page, 'alm_set_admin_nonce' ); add_action( 'load-' . $alm_extensions_page, 'alm_load_admin_js' ); add_action( 'load-' . $alm_extensions_page, 'alm_set_admin_nonce' ); add_action( 'load-' . $alm_licenses_page, 'alm_load_admin_js' ); add_action( 'load-' . $alm_licenses_page, 'alm_set_admin_nonce' ); } /* * alm_settings_page * Settings page * * @since 2.0.0 */ function alm_settings_page(){ include_once( ALM_PATH . 'admin/views/settings.php'); } /* * alm_repeater_page * Custom Repeaters * * @since 2.0.0 */ function alm_repeater_page(){ include_once( ALM_PATH . 'admin/views/repeater-templates.php'); } /* * alm_shortcode_builder_page * Shortcode Builder * * @since 2.0.0 */ function alm_shortcode_builder_page(){ include_once( ALM_PATH . 'admin/views/shortcode-builder.php'); } /* * alm_add_ons_page * Ajax Load More Add-ons * * @since 2.0.0 */ function alm_add_ons_page(){ include_once( ALM_PATH . 'admin/views/add-ons.php'); } /* * alm_extensions_ons_page * Ajax Load More Add-ons * * @since 3.0.0 */ function alm_extensions_page(){ include_once( ALM_PATH . 'admin/views/extensions.php'); } /* * alm_example_page * Examples Page * * @since 2.0.0 */ function alm_examples_page(){ include_once( ALM_PATH . 'admin/views/examples.php'); } /* * alm_help_page * Help Page (Implementation Inforgraphic) * * @since 2.8.7 */ function alm_help_page(){ include_once( ALM_PATH . 'admin/views/help.php'); } /* * alm_licenses_page * Ajax Load More Licenses * * @since 2.7.0 */ function alm_licenses_page(){ include_once( ALM_PATH . 'admin/views/licenses.php'); } /* * alm_cache_page * Cache Add-on page * * @since 2.6.0 */ function alm_cache_page(){ include_once( ALM_CACHE_ADMIN_PATH . 'admin/views/cache.php'); } /** * alm_load_admin_js * Load Admin JS * * @since 2.0.15 */ function alm_load_admin_js(){ add_action( 'admin_enqueue_scripts', 'alm_enqueue_admin_scripts' ); } function alm_load_cache_admin_js(){ if(class_exists('ALMCache')){ ALMCache::alm_enqueue_cache_admin_scripts(); } } /** * alm_enqueue_admin_scripts * Enqueue Admin JS * * @since 2.0.15 */ function alm_enqueue_admin_scripts(){ //Load Admin CSS wp_enqueue_style( 'alm-admin', ALM_ADMIN_URL. 'css/admin.css'); wp_enqueue_style( 'alm-select2', ALM_ADMIN_URL. 'css/select2.css'); wp_enqueue_style( 'alm-tooltipster', ALM_ADMIN_URL. 'css/tooltipster/tooltipster.css'); wp_enqueue_style( 'alm-core', ALM_URL. '/core/css/ajax-load-more.css'); wp_enqueue_style( 'alm-font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css'); wp_dequeue_style( 'acf-input' ); //Load CodeMirror Syntax Highlighting if on Repater Template page $screen = get_current_screen(); if ( in_array( $screen->id, array( 'ajax-load-more_page_ajax-load-more-repeaters') ) ){ //CodeMirror CSS wp_enqueue_style( 'alm-codemirror-css', ALM_ADMIN_URL. 'codemirror/lib/codemirror.css' ); //CodeMirror JS wp_enqueue_script( 'alm-codemirror', ALM_ADMIN_URL. 'codemirror/lib/codemirror.js'); wp_enqueue_script( 'alm-codemirror-matchbrackets', ALM_ADMIN_URL. 'codemirror/addon/edit/matchbrackets.js' ); wp_enqueue_script( 'alm-codemirror-htmlmixed', ALM_ADMIN_URL. 'codemirror/mode/htmlmixed/htmlmixed.js' ); wp_enqueue_script( 'alm-codemirror-xml', ALM_ADMIN_URL. 'codemirror/mode/xml/xml.js' ); wp_enqueue_script( 'alm-codemirror-javascript', ALM_ADMIN_URL. 'codemirror/mode/javascript/javascript.js' ); wp_enqueue_script( 'alm-codemirror-mode-css', ALM_ADMIN_URL. 'codemirror/mode/css/css.js' ); wp_enqueue_script( 'alm-codemirror-clike', ALM_ADMIN_URL. 'codemirror/mode/clike/clike.js' ); wp_enqueue_script( 'alm-codemirror-php', ALM_ADMIN_URL. 'codemirror/mode/php/php.js' ); } //Load JS wp_enqueue_script( 'jquery-form' ); wp_enqueue_script( 'alm-select2', ALM_ADMIN_URL. 'js/libs/select2.min.js', array( 'jquery' )); wp_enqueue_script( 'alm-drops', ALM_ADMIN_URL. 'js/libs/jquery.drops.js', array( 'jquery' )); wp_enqueue_script( 'alm-tipster', ALM_ADMIN_URL. 'js/libs/jquery.tooltipster.min.js', array( 'jquery' )); wp_enqueue_script( 'alm-admin', ALM_ADMIN_URL. 'js/admin.js', array( 'jquery' )); wp_enqueue_script( 'alm-shortcode-builder', ALM_ADMIN_URL. 'shortcode-builder/js/shortcode-builder.js', array( 'jquery' )); } /* * alm_save_repeater * Repeater Save function * * @return response * @since 2.0.0 */ function alm_save_repeater(){ if (current_user_can( 'edit_theme_options' )){ global $wpdb; $table_name = $wpdb->prefix . "alm"; $blog_id = $wpdb->blogid; $options = get_option( 'alm_settings' ); //Get plugin options $nonce = $_POST["nonce"]; // Check our nonce, if they don't match then bounce! if (! wp_verify_nonce( $nonce, 'alm_repeater_nonce' )) die('Error - unable to verify nonce, please try again.'); // Get _POST Vars $c = Trim(stripslashes($_POST["value"])); // Repeater Value $n = Trim(stripslashes($_POST["repeater"])); // Repeater name $t = Trim(stripslashes($_POST["type"])); // Repeater name $a = Trim(stripslashes($_POST["alias"])); // Repeater alias // Write to repeater templates // (Default) if($t === 'default'){ if($blog_id > 1){ $dir = ALM_PATH. 'core/repeater/'. $blog_id; if( !is_dir($dir) ){ mkdir($dir); } $f = ALM_PATH. 'core/repeater/'. $blog_id .'/default.php'; }else{ $f = ALM_PATH. 'core/repeater/default.php'; } } // (Unlimited) elseif($t === 'unlimited'){ if($blog_id > 1){ $dir = ALM_UNLIMITED_PATH. 'repeaters/'. $blog_id; if( !is_dir($dir) ){ mkdir($dir); } $f = ALM_UNLIMITED_PATH. 'repeaters/'. $blog_id .'/'.$n .'.php'; }else{ $f = ALM_UNLIMITED_PATH. 'repeaters/'.$n .'.php'; } } // (Unlimited v1) else{ $f = ALM_REPEATER_PATH. 'repeaters/'.$n .'.php'; } try { $o = fopen($f, 'w+'); //Open file if ( !$o ) { throw new Exception(__('[Ajax Load More] Unable to open repeater template - '.$f.' - Please check your file path and ensure your server is configured to allow Ajax Load More to read and write files.', 'ajax-load-more')); } $w = fwrite($o, $c); //Save the file if ( !$w ) { throw new Exception(__('[Ajax Load More] Error saving repeater template - '.$f.' - Please check your file path and ensure your server is configured to allow Ajax Load More to read and write files.', 'ajax-load-more')); } fclose($o); //now close it } catch ( Exception $e ) { // Display error message in console. if(!isset($options['_alm_error_notices']) || $options['_alm_error_notices'] == '1'){ echo ''; } } //Save to database if($t === 'default') { $data_update = array('repeaterDefault' => "$c", 'pluginVersion' => ALM_VERSION); $data_where = array('name' => "default"); } elseif($t === 'unlimited'){ // Unlimited Repeaters $table_name = $wpdb->prefix . "alm_unlimited"; $data_update = array('repeaterDefault' => "$c", 'alias' => "$a", 'pluginVersion' => ALM_UNLIMITED_VERSION); $data_where = array('name' => $n); } else{ // Custom Repeaters $data_update = array('repeaterDefault' => "$c", 'alias' => "$a", 'pluginVersion' => ALM_REPEATER_VERSION); $data_where = array('name' => $n); } $wpdb->update($table_name , $data_update, $data_where); //Our results if($w){ echo 'Template Saved Successfully'; } else { echo ''. __('Error Writing File', 'ajax-load-more') .'
Something went wrong and the data could not be saved.'; } die(); }else { echo __('You don\'t belong here.', 'ajax-load-more'); } } /* * alm_update_repeater * Update repeater template from database * * - User story: User deletes plugin, the installs again and the version has not change - their default repeater will be in the default state and unable to be updated. * * @return DB value * @since 2.5.0 */ function alm_update_repeater(){ if (current_user_can( 'edit_theme_options' )){ $nonce = $_POST["nonce"]; // Check our nonce, if they don't match then bounce! if (! wp_verify_nonce( $nonce, 'alm_repeater_nonce' )) die('Error - unable to verify nonce, please try again.'); // Get _POST Vars $n = Trim(stripslashes($_POST["repeater"])); // Repeater name $t = Trim(stripslashes($_POST["type"])); // Repeater type (default | unlimited) // Get value from database global $wpdb; $table_name = $wpdb->prefix . "alm"; if($t === 'default') $n = 'default'; if($t === 'unlimited') $table_name = $wpdb->prefix . "alm_unlimited"; $the_repeater = $wpdb->get_var("SELECT repeaterDefault FROM " . $table_name . " WHERE name = '$n'"); echo $the_repeater; // Return repeater value die(); } else { echo __('You don\'t belong here.', 'ajax-load-more'); } } /* * alm_get_tax_terms * Get taxonomy terms for shortcode builder * * @return Taxonomy Terms * @since 2.1.0 */ function alm_get_tax_terms(){ if (current_user_can( 'edit_theme_options' )){ $nonce = $_GET["nonce"]; // Check our nonce, if they don't match then bounce! if (! wp_verify_nonce( $nonce, 'alm_repeater_nonce' )) die('Get Bounced!'); $taxonomy = (isset($_GET['taxonomy'])) ? $_GET['taxonomy'] : ''; $index = (isset($_GET['index'])) ? $_GET['index'] : '1'; $tax_args = array( 'orderby' => 'name', 'order' => 'ASC', 'hide_empty' => false ); $terms = get_terms($taxonomy, $tax_args); $returnVal = ''; if ( !empty( $terms ) && !is_wp_error( $terms ) ){ $returnVal .= ''; echo $returnVal; die(); }else{ echo "

No terms exist within this taxonomy

"; die(); } } else { echo __('You don\'t belong here.', 'ajax-load-more'); } } /* * alm_layouts_dismiss * Dismiss Add Layouts CTA in repeater templates. * * @since 2.8.2.1 */ function alm_layouts_dismiss(){ if (current_user_can( 'edit_theme_options' )){ $nonce = $_POST["nonce"]; // Check our nonce, if they don't match then bounce! if (! wp_verify_nonce( $nonce, 'alm_repeater_nonce' )) die('Error - unable to verify nonce, please try again.'); update_option('alm_layouts_dismiss', 'true'); echo 'Success'; die(); } } /* * alm_dismiss_sharing * Dismiss sharing widget on plugin settings page. * * @since 2.8.2.1 */ function alm_dismiss_sharing(){ if (current_user_can( 'edit_theme_options' )){ $nonce = $_POST["nonce"]; // Check our nonce, if they don't match then bounce! if (! wp_verify_nonce( $nonce, 'alm_repeater_nonce' )) die('Error - unable to verify nonce, please try again.'); set_transient( 'alm_dismiss_sharing', 'true', YEAR_IN_SECONDS ); echo 'ALM sharing dismissed successfully.'; die(); } } /* * alm_filter_admin_footer_text * Filter the WP Admin footer text only on ALM pages * * @since 2.12.0 */ function alm_filter_admin_footer_text( $text ) { $screen = alm_is_admin_screen(); if(!$screen){ return; } echo 'Ajax Load More is made with by Connekt | Leave a Review | Get Support'; } /* * admin_init * Initiate the plugin, create our setting variables. * * @since 2.0.0 */ add_action( 'admin_init', 'alm_admin_init'); function alm_admin_init(){ register_setting( 'alm-setting-group', 'alm_settings', 'alm_sanitize_settings' ); add_settings_section( 'alm_general_settings', 'Global Settings', 'alm_general_settings_callback', 'ajax-load-more' ); add_settings_section( 'alm_admin_settings', 'Admin Settings', 'alm_admin_settings_callback', 'ajax-load-more' ); add_settings_field( // Container type '_alm_container_type', __('Container Type', 'ajax-load-more' ), 'alm_container_type_callback', 'ajax-load-more', 'alm_general_settings' ); add_settings_field( // Classnames '_alm_classname', __('Container Classes', 'ajax-load-more' ), 'alm_class_callback', 'ajax-load-more', 'alm_general_settings' ); add_settings_field( // Disbale CSS '_alm_disable_css', __('Disable CSS', 'ajax-load-more' ), 'alm_disable_css_callback', 'ajax-load-more', 'alm_general_settings' ); add_settings_field( // Btn color '_alm_btn_color', __('Button/Loading Style', 'ajax-load-more' ), 'alm_btn_color_callback', 'ajax-load-more', 'alm_general_settings' ); add_settings_field( // Button classes '_alm_btn_classname', __('Button Classes', 'ajax-load-more' ), 'alm_btn_class_callback', 'ajax-load-more', 'alm_general_settings' ); add_settings_field( // Nonce security '_alm_nonce_security', __('Ajax Security', 'ajax-load-more' ), '_alm_nonce_security_callback', 'ajax-load-more', 'alm_general_settings' ); add_settings_field( // Scroll to top on load '_alm_scroll_top', __('Top of Page', 'ajax-load-more' ), '_alm_scroll_top_callback', 'ajax-load-more', 'alm_general_settings' ); add_settings_field( // Load dynamic queries '_alm_disable_dynamic', __('Dynamic Content', 'ajax-load-more' ), 'alm_disable_dynamic_callback', 'ajax-load-more', 'alm_admin_settings' ); add_settings_field( // Hide btn '_alm_hide_btn', __('Editor Button', 'ajax-load-more' ), 'alm_hide_btn_callback', 'ajax-load-more', 'alm_admin_settings' ); add_settings_field( // Display error notices '_alm_error_notices', __('Error Notices', 'ajax-load-more' ), '_alm_error_notices_callback', 'ajax-load-more', 'alm_admin_settings' ); // CACHE if(has_action('alm_cache_settings')){ do_action('alm_cache_settings'); } // CUSTOM REPEATERS if(has_action('alm_unlimited_settings')){ do_action('alm_unlimited_settings'); } // LAYOUTS if(has_action('alm_layouts_settings')){ do_action('alm_layouts_settings'); } // PAGINATION if(has_action('alm_paging_settings')){ do_action('alm_paging_settings'); } // PREVIOUS POST if(has_action('alm_prev_post_settings')){ do_action('alm_prev_post_settings'); } // PRELOADED if(has_action('alm_preloaded_settings')){ do_action('alm_preloaded_settings'); } // REST API if(has_action('alm_rest_api_settings')){ do_action('alm_rest_api_settings'); } // SEO if(has_action('alm_seo_settings')){ do_action('alm_seo_settings'); } // THEME REPEATERS if(has_action('alm_theme_repeaters_settings')){ do_action('alm_theme_repeaters_settings'); } } /* * alm_general_settings_callback * Some general settings text * * @since 2.0.0 */ function alm_general_settings_callback() { echo '

' . __('Customize the user experience of Ajax Load More by updating the fields below.', 'ajax-load-more') . '

'; } /* * alm_admin_settings_callback * Some general admin settings text * * @since 2.0.0 */ function alm_admin_settings_callback() { echo '

' . __('The following settings affect the WordPress admin area only.', 'ajax-load-more') . '

'; } /* * alm_sanitize_settings * Sanitize our form fields * * @since 2.0.0 */ function alm_sanitize_settings( $input ) { return $input; } /* * alm_disable_css_callback * Diabale Ajax Load More CSS. * * @since 2.0.0 */ function alm_disable_css_callback(){ $options = get_option( 'alm_settings' ); if(!isset($options['_alm_disable_css'])) $options['_alm_disable_css'] = '0'; $html = ''; $html .= ''; $html .= ''; echo $html; } /* * alm_hide_btn_callback * Disbale the ALM shortcode button in the WordPress content editor * * @since 2.2.1 */ function alm_hide_btn_callback(){ $options = get_option( 'alm_settings' ); if(!isset($options['_alm_hide_btn'])) $options['_alm_hide_btn'] = '0'; $html = ''; $html .= ''; echo $html; } /* * _alm_error_notices_callback * Display admin error notices in browser console. * * @since 2.7.2 */ function _alm_error_notices_callback(){ $options = get_option( 'alm_settings' ); if(!isset($options['_alm_error_notices'])) $options['_alm_error_notices'] = '1'; $html = ''; $html .= ''; $html .= ''; echo $html; } /* * alm_disable_dynamic_callback * Disable the dynamic population of categories, tags and authors * * @since 2.6.0 */ function alm_disable_dynamic_callback(){ $options = get_option( 'alm_settings' ); if(!isset($options['_alm_disable_dynamic'])) $options['_alm_disable_dynamic'] = '0'; $html = ''; $html .= ''; $html .= ''; echo $html; } /* * alm_container_type_callback * The type of container ul or div * * @since 2.0.0 */ function alm_container_type_callback() { $options = get_option( 'alm_settings' ); if(!isset($options['_alm_container_type'])) $options['_alm_container_type'] = '1'; $html = ''; $html .= '
'; $html .= ''; $html .= ''; $html .= ''; echo $html; } /* * alm_class_callback * Add classes to the Ajax Load More wrapper * * @since 2.0.0 */ function alm_class_callback(){ $options = get_option( 'alm_settings' ); $html = '
'; $html .= ' '; echo $html; } /* * alm_btn_color_callback * Get button color * * @since 2.0.0 */ function alm_btn_color_callback() { $options = get_option( 'alm_settings' ); $type = $options['_alm_btn_color']; if(!isset($type)) $options['_alm_btn_color'] = '0'; $selected0 = ''; if($type == 'default') $selected0 = 'selected="selected"'; $selected1 = ''; if($type == 'blue') $selected1 = 'selected="selected"'; $selected2 = ''; if($type == 'green') $selected2 = 'selected="selected"'; $selected3 = ''; if($type == 'red') $selected3 = 'selected="selected"'; $selected4 = ''; if($type == 'purple') $selected4 = 'selected="selected"'; $selected5 = ''; if($type == 'grey') $selected5 = 'selected="selected"'; $selected6 = ''; if($type == 'white') $selected6 = 'selected="selected"'; $selected7 = ''; if($type == 'infinite classic') $selected7 = 'selected="selected"'; $selected8 = ''; if($type == 'infinite skype') $selected8 = 'selected="selected"'; $selected9 = ''; if($type == 'infinite ring') $selected9 = 'selected="selected"'; $selected10 = ''; if($type == 'infinite fading-blocks') $selected10 = 'selected="selected"'; $selected11 = ''; if($type == 'infinite fading-circles') $selected11 = 'selected="selected"'; $selected12 = ''; if($type == 'infinite chasing-arrows') $selected12 = 'selected="selected"'; $html = ''; $html .= ''; $html .= '
'.__('Preview', 'ajax-load-more') .'
'; echo $html; } /* * alm_btn_class_callback * Add classes to the Ajax Load More button * * @since 2.4.1 */ function alm_btn_class_callback(){ $options = get_option( 'alm_settings' ); if(!isset($options['_alm_btn_classname'])) $options['_alm_btn_classname'] = ''; $html = ''; $html .= ' '; echo $html; ?> '; $html .= ''; $html .= ''; echo $html; } /* * _alm_nonce_security_callback * Move window to top of screen on page load * * @since 2.6.3 */ function _alm_nonce_security_callback(){ $options = get_option( 'alm_settings' ); if(!isset($options['_alm_nonce_security'])) $options['_alm_nonce_security'] = '0'; $html = ''; $html .= ''; $html .= ''; echo $html; }