$value) { if (preg_match('/^json(\d+)$/', $key, $matches)) { $count++; } } $data_t = $count * 200; $data_i = !empty(get_transient('foxtool_index_count')) ? get_transient('foxtool_index_count') : 0; if ($data_i >= $data_t) { $data_full = 0; } else { $data_full = $data_t - $data_i; } echo '
'; echo ''. __('Total:', 'foxtool') .' '. $data_t .''; echo ''. __('Use:', 'foxtool') .' '. $data_i .''; echo ''. __('Still:', 'foxtool') .' '. $data_full .''; echo '
'; } ?>
'. __('Index now', 'foxtool'), 'manage_options', 'foxtool-gindex-options', 'foxtool_gindex_options_page'); } add_action('admin_menu', 'foxtool_gindex_options_link'); function foxtool_gindex_register_settings() { register_setting('foxtool_gindex_settings_group', 'foxtool_gindex_settings'); } add_action('admin_init', 'foxtool_gindex_register_settings');