| 1 |
<?php |
| 2 |
/* |
| 3 |
|
| 4 |
Plugin Name: WPide |
| 5 |
Plugin URI: https://github.com/WPsites/WPide |
| 6 |
Description: Replace the default WordPress code editor for plugins and themes. Adding syntax highlighting, autocomplete of WordPress functions + PHP, line numbers, auto backup of files before editing. |
| 7 |
Version: 1.0 |
| 8 |
Author: Simon Dunton |
| 9 |
Author URI: http://www.wpsites.co.uk |
| 10 |
|
| 11 |
*/ |
| 12 |
|
| 13 |
|
| 14 |
|
| 15 |
class WPide |
| 16 |
|
| 17 |
{ |
| 18 |
|
| 19 |
|
| 20 |
function __construct() { |
| 21 |
|
| 22 |
|
| 23 |
|
| 24 |
// Uncomment any of these calls to add the functionality that you need. |
| 25 |
|
| 26 |
|
| 27 |
|
| 28 |
add_action('admin_head', 'WPide::add_admin_head'); |
| 29 |
|
| 30 |
|
| 31 |
|
| 32 |
add_action('admin_head', 'WPide::load_editor'); |
| 33 |
|
| 34 |
|
| 35 |
|
| 36 |
add_action('admin_init', 'WPide::add_admin_js'); |
| 37 |
|
| 38 |
|
| 39 |
|
| 40 |
|
| 41 |
|
| 42 |
|
| 43 |
|
| 44 |
//setup ajax function to save a backup |
| 45 |
|
| 46 |
|
| 47 |
|
| 48 |
add_action('wp_ajax_ace_backup_call', 'WPide::ace_backup_call'); |
| 49 |
|
| 50 |
|
| 51 |
|
| 52 |
|
| 53 |
|
| 54 |
|
| 55 |
|
| 56 |
|
| 57 |
|
| 58 |
|
| 59 |
|
| 60 |
|
| 61 |
|
| 62 |
|
| 63 |
|
| 64 |
} |
| 65 |
|
| 66 |
|
| 67 |
|
| 68 |
|
| 69 |
|
| 70 |
|
| 71 |
|
| 72 |
|
| 73 |
|
| 74 |
|
| 75 |
|
| 76 |
|
| 77 |
|
| 78 |
|
| 79 |
|
| 80 |
|
| 81 |
|
| 82 |
|
| 83 |
|
| 84 |
|
| 85 |
|
| 86 |
|
| 87 |
|
| 88 |
public static function add_admin_head() |
| 89 |
|
| 90 |
|
| 91 |
|
| 92 |
|
| 93 |
|
| 94 |
|
| 95 |
|
| 96 |
{ |
| 97 |
|
| 98 |
|
| 99 |
|
| 100 |
|
| 101 |
|
| 102 |
|
| 103 |
|
| 104 |
?> |
| 105 |
|
| 106 |
|
| 107 |
|
| 108 |
|
| 109 |
|
| 110 |
|
| 111 |
|
| 112 |
<style type="text/css"> |
| 113 |
|
| 114 |
|
| 115 |
|
| 116 |
|
| 117 |
|
| 118 |
|
| 119 |
|
| 120 |
#quicktags, #post-status-info, #editor-toolbar, #newcontent, .ace_print_margin { display: none; } |
| 121 |
|
| 122 |
|
| 123 |
|
| 124 |
|
| 125 |
|
| 126 |
|
| 127 |
|
| 128 |
#fancyeditordiv { |
| 129 |
|
| 130 |
|
| 131 |
|
| 132 |
|
| 133 |
|
| 134 |
|
| 135 |
|
| 136 |
position: relative; |
| 137 |
|
| 138 |
|
| 139 |
|
| 140 |
|
| 141 |
|
| 142 |
|
| 143 |
|
| 144 |
width: 500px; |
| 145 |
|
| 146 |
|
| 147 |
|
| 148 |
|
| 149 |
|
| 150 |
|
| 151 |
|
| 152 |
height: 400px; |
| 153 |
|
| 154 |
|
| 155 |
|
| 156 |
|
| 157 |
|
| 158 |
|
| 159 |
|
| 160 |
} |
| 161 |
|
| 162 |
|
| 163 |
|
| 164 |
|
| 165 |
|
| 166 |
|
| 167 |
|
| 168 |
#template div{margin-right:0 !important;} |
| 169 |
|
| 170 |
|
| 171 |
|
| 172 |
|
| 173 |
|
| 174 |
|
| 175 |
|
| 176 |
|
| 177 |
|
| 178 |
|
| 179 |
|
| 180 |
|
| 181 |
|
| 182 |
|
| 183 |
|
| 184 |
</style> |
| 185 |
|
| 186 |
|
| 187 |
|
| 188 |
|
| 189 |
|
| 190 |
|
| 191 |
|
| 192 |
<?php |
| 193 |
|
| 194 |
|
| 195 |
|
| 196 |
|
| 197 |
|
| 198 |
|
| 199 |
|
| 200 |
} |
| 201 |
|
| 202 |
|
| 203 |
|
| 204 |
|
| 205 |
|
| 206 |
|
| 207 |
|
| 208 |
|
| 209 |
|
| 210 |
|
| 211 |
|
| 212 |
|
| 213 |
|
| 214 |
|
| 215 |
|
| 216 |
public static function load_editor() |
| 217 |
|
| 218 |
|
| 219 |
|
| 220 |
|
| 221 |
|
| 222 |
|
| 223 |
|
| 224 |
{ |
| 225 |
|
| 226 |
|
| 227 |
|
| 228 |
|
| 229 |
|
| 230 |
|
| 231 |
|
| 232 |
?> |
| 233 |
|
| 234 |
|
| 235 |
|
| 236 |
|
| 237 |
|
| 238 |
|
| 239 |
|
| 240 |
<script> |
| 241 |
|
| 242 |
|
| 243 |
|
| 244 |
|
| 245 |
|
| 246 |
|
| 247 |
|
| 248 |
var autocompleting = false; |
| 249 |
|
| 250 |
|
| 251 |
|
| 252 |
var autocompletelength = 2; |
| 253 |
|
| 254 |
|
| 255 |
|
| 256 |
var editor = ''; |
| 257 |
|
| 258 |
|
| 259 |
|
| 260 |
|
| 261 |
|
| 262 |
|
| 263 |
|
| 264 |
var html_tags = ("_() __() __checked_selected_helper() __construct() __destruct() __get_option() " + |
| 265 |
|
| 266 |
"__ngettext() __ngettext_noop() __set() __tostring() _add_themes_utility_last() _added() " + |
| 267 |
|
| 268 |
"_admin_notice_multisite_activate_plugins_page() _admin_notice_post_locked() _admin_search_query() _block() _blockheader() _c() " + |
| 269 |
|
| 270 |
"_changed() _check() _check_timeout() _checkcode() _close_comments_for_old_post() _close_comments_for_old_posts() " + |
| 271 |
|
| 272 |
"_compareseq() _connect() _context() _createresponder() _crop_image_resource() _css_href() " + |
| 273 |
|
| 274 |
"_custom_background_cb() _data_close() _data_prepare() _data_read() _data_write() _data_write_block() " + |
| 275 |
|
| 276 |
"_deep_replace() _default() _default_wp_die_handler() _delete_attachment_theme_mod() _deleted() _descendants() " + |
| 277 |
|
| 278 |
"_destroycache() _diag() _disconnect() _draft_or_post_title() _e() _each() " + |
| 279 |
|
| 280 |
"_encode() _encodearray() _endblock() _enddiff() _escape() _ex() " + |
| 281 |
|
| 282 |
"_exec() _expandlinks() _fetch_remote_file() _fetch_with_format() _fill_empty_link_category() _fill_many_users() " + |
| 283 |
|
| 284 |
"_fill_single_user() _fill_user() _fix_attachment_links() _fix_attachment_links_replace_cb() _flip_image_resource() _future_post_hook() " + |
| 285 |
|
| 286 |
"_get_cron_array() _get_current_taxonomy() _get_custom_object_labels() _get_display_callback() _get_dropins() _get_form_callback() " + |
| 287 |
|
| 288 |
"_get_meta_table() _get_page_link() _get_plugin_data_markup_translate() _get_post_ancestors() _get_template_edit_filename() _get_term_children() " + |
| 289 |
|
| 290 |
"_get_term_hierarchy() _get_update_callback() _get_widget_id_base() _getcmd() _getlines() _getmatches() " + |
| 291 |
|
| 292 |
"_getoptions() _getplink() _gettempdir() _gettransport() _hash_hmac() _http_build_query() " + |
| 293 |
|
| 294 |
"_httprequest() _httpsrequest() _image_get_preview_ratio() _init() _init_caps() _insert_into_post_button() " + |
| 295 |
|
| 296 |
"_insert_replace_helper() _intutf() _json_decode_object_helper() _lcspos() _lines() _links_add_base() " + |
| 297 |
|
| 298 |
"_links_add_target() _list() _list_meta_row() _logmsg() _make_cat_compat() _make_email_clickable_cb() " + |
| 299 |
|
| 300 |
"_make_url_clickable_cb() _make_web_ftp_clickable_cb() _map() _maybe_update_core() _maybe_update_plugins() _maybe_update_themes() " + |
| 301 |
|
| 302 |
"_mb_substr() _media_button() _mime_types() _multisite_getusersblogs() _n() _n_noop() " + |
| 303 |
|
| 304 |
"_nav_menu_item_id_use_once() _nc() _nx() _nx_noop() _p() _pad_term_counts() " + |
| 305 |
|
| 306 |
"_page_rows() _page_traverse_name() _parse_json() _parse_xml() _post_row() _post_states() " + |
| 307 |
|
| 308 |
"_posttransport() _prepare_post_body() _preview_theme_stylesheet_filter() _preview_theme_template_filter() _print_scripts() _publish_post_hook() " + |
| 309 |
|
| 310 |
"_quit() _readbool() _readmsg() _readnull() _readnumber() _readstring() " + |
| 311 |
|
| 312 |
"_real_escape() _register() _register_one() _register_widget_form_callback() _register_widget_update_callback() _register_widgets() " + |
| 313 |
|
| 314 |
"_relatedtarget() _relocate_children() _response_to_rss() _rotate_image_resource() _save_post_hook() _search_plugins_filter_callback() " + |
| 315 |
|
| 316 |
"_set() _set_cron_array() _set_preview() _settimeout() _settype() _shiftboundaries() " + |
| 317 |
|
| 318 |
"_show_post_preview() _sort_nav_menu_items() _splitonwords() _startblock() _startdiff() _strip_newlines() " + |
| 319 |
|
| 320 |
"_stripform() _striplinks() _striptext() _tag_row() _term_rows() _transition_post_status() " + |
| 321 |
|
| 322 |
"_unhtmlentities() _unzip_file_pclzip() _unzip_file_ziparchive() _update_post_term_count() _upgrade_cron_array() _usort_terms_by_id() " + |
| 323 |
|
| 324 |
"_usort_terms_by_name() _utfutf() _walk_bookmarks() _weak_escape() _wp_ajax_add_hierarchical_term() _wp_ajax_delete_comment_response() " + |
| 325 |
|
| 326 |
"_wp_ajax_menu_quick_search() _wp_auto_add_pages_to_menu() _wp_call_all_hook() _wp_comment_row() _wp_dashboard_control_callback() _wp_dashboard_recent_comments_row() " + |
| 327 |
|
| 328 |
"_wp_delete_orphaned_draft_menu_items() _wp_delete_post_menu_item() _wp_delete_tax_menu_item() _wp_dependency() _wp_filter_build_unique_id() _wp_filter_taxonomy_base() " + |
| 329 |
|
| 330 |
"_wp_get_comment_list() _wp_get_post_autosave_hack() _wp_get_user_contactmethods() _wp_http_get_object() _wp_kses_decode_entities_chr() _wp_kses_decode_entities_chr_hexdec() " + |
| 331 |
|
| 332 |
"_wp_menu_item_classes_by_context() _wp_menu_output() _wp_nav_menu_meta_box_object() _wp_oembed_get_object() _wp_post_revision_fields() _wp_post_thumbnail_class_filter() " + |
| 333 |
|
| 334 |
"_wp_post_thumbnail_class_filter_add() _wp_post_thumbnail_class_filter_remove() _wp_post_thumbnail_html() _wp_put_post_revision() _wp_relative_upload_path() _wp_specialchars() " + |
| 335 |
|
| 336 |
"_wp_translate_postdata() _wptexturize_pushpop_element() _x() abort() absolutize() absolutize_url() " + |
| 337 |
|
| 338 |
"abspath() accept_encoding() activate_plugin() activate_plugins() activate_sitewide_plugin() activatehandlers() " + |
| 339 |
|
| 340 |
"add() add_action() add_blog_option() add_callback() add_cap() add_clean_index() " + |
| 341 |
|
| 342 |
"add_comment_meta() add_comment_to_entry() add_comments_page() add_contextual_help() add_cssclass() add_custom_background() " + |
| 343 |
|
| 344 |
"add_custom_image_header() add_dashboard_page() add_data() add_editor_style() add_enclosure_if_new() add_endpoint() " + |
| 345 |
|
| 346 |
"add_entry() add_existing_user_to_blog() add_external_rule() add_feed() add_filter() add_global_groups() " + |
| 347 |
|
| 348 |
"add_image_size() add_js() add_link() add_links_page() add_magic_quotes() add_management_page() " + |
| 349 |
|
| 350 |
"add_media_page() add_menu_classes() add_menu_page() add_meta() add_meta_box() add_metadata() " + |
| 351 |
|
| 352 |
"add_new_user_to_blog() add_object_page() add_option() add_option_update_handler() add_option_whitelist() add_options_page() " + |
| 353 |
|
| 354 |
"add_pages_page() add_permastruct() add_ping() add_plugins_page() add_post_meta() add_post_type_support() " + |
| 355 |
|
| 356 |
"add_posts_page() add_query_arg() add_query_var() add_rewrite_endpoint() add_rewrite_rule() add_rewrite_tag() " + |
| 357 |
|
| 358 |
"add_role() add_rule() add_settings_error() add_settings_field() add_settings_section() add_shortcode() " + |
| 359 |
|
| 360 |
"add_strings() add_submenu_page() add_theme_page() add_theme_support() add_thickbox() add_to_blinklist() " + |
| 361 |
|
| 362 |
"add_to_blogmarks() add_to_delicious() add_to_digg() add_to_furl() add_to_magnolia() add_to_myweb() " + |
| 363 |
|
| 364 |
"add_to_newsvine() add_to_reddit() add_to_segnalo() add_to_service() add_to_simpy() add_to_spurl() " + |
| 365 |
|
| 366 |
"add_to_wists() add_user() add_user_meta() add_user_to_blog() add_users_page() add_utility_page() " + |
| 367 |
|
| 368 |
"addaddress() addarray() addattachment() addbcc() addcall() addcallback() " + |
| 369 |
|
| 370 |
"addcc() addclassestolist() addcustomheader() addedline() addembeddedimage() addmethods() " + |
| 371 |
|
| 372 |
"addrappend() addreplyto() addrformat() addselectvalue() addslashes_gpc() addstringattachment() " + |
| 373 |
|
| 374 |
"addtext() addtocache() addtwonumbers() adjacent_image_link() adjacent_post_link() adjacent_posts_rel_link() " + |
| 375 |
|
| 376 |
"adjacent_posts_rel_link_wp_head() adjust() admin_color_scheme_picker() admin_created_user_email() admin_created_user_subject() admin_load() " + |
| 377 |
|
| 378 |
"admin_notice_feed() admin_page() admin_url() after() akismet_admin_init() akismet_admin_warnings() " + |
| 379 |
|
| 380 |
"akismet_auto_check_comment() akismet_caught() akismet_check_db_comment() akismet_check_for_spam_button() akismet_check_server_connectivity() akismet_conf() " + |
| 381 |
|
| 382 |
"akismet_config_page() akismet_counter() akismet_delete_old() akismet_get_host() akismet_get_key() akismet_get_server_connectivity() " + |
| 383 |
|
| 384 |
"akismet_get_user_roles() akismet_http_post() akismet_init() akismet_kill_proxy_check() akismet_manage_page() akismet_nonce_field() " + |
| 385 |
|
| 386 |
"akismet_recheck_button() akismet_recheck_queue() akismet_result_spam() akismet_rightnow() akismet_server_connectivity_ok() akismet_set_comment_status() " + |
| 387 |
|
| 388 |
"akismet_spam_comments() akismet_spam_count() akismet_spam_totals() akismet_spamtoham() akismet_stats() akismet_stats_display() " + |
| 389 |
|
| 390 |
"akismet_stats_page() akismet_stats_script() akismet_submit_nonspam_comment() akismet_submit_spam_comment() akismet_transition_comment_status() akismet_verify_key() " + |
| 391 |
|
| 392 |
"akismet_warning() all() all_deps() allow_subdirectory_install() allow_subdomain_install() allowed_tags() " + |
| 393 |
|
| 394 |
"anchorposition_getpageoffsetleft() anchorposition_getpageoffsettop() anchorposition_getwindowoffsetleft() anchorposition_getwindowoffsettop() animatestart() animateto() " + |
| 395 |
|
| 396 |
"animmode() antispambot() any() apop() append() append_content() " + |
| 397 |
|
| 398 |
"append_editor() apply() apply_filters() apply_filters_ref_array() areamousedown() areamousemove() " + |
| 399 |
|
| 400 |
"argumentnames() array_unique_noempty() aspectratioxy() aspectratioyx() atime() atom__construct_type() " + |
| 401 |
|
| 402 |
"atom__construct_type() atom__content_construct_type() atom_enclosure() atomparser() atomserver() attach_uploads() " + |
| 403 |
|
| 404 |
"attachall() attachwhendone() attribute_escape() auth_redirect() auth_required() authenticate() " + |
| 405 |
|
| 406 |
"authentication() authentication_header() author_can() autodiscovery() autoembed() autoembed_callback() " + |
| 407 |
|
| 408 |
"automatic_feed_links() autosave_disable_buttons() autosave_enable_buttons() autosave_loading() autosave_parse_response() autosave_saved() " + |
| 409 |
|
| 410 |
"autosave_saved_new() autosave_update_slug() avoid_blog_page_permalink_collision() background_color() background_image() backslashit() " + |
| 411 |
|
| 412 |
"bad_request() bail() balancetags() baseencodewrapmb() before() before_last_bar() " + |
| 413 |
|
| 414 |
"before_version_name() bind() bindaseventlistener() blank() block_request() blogger_deletepost() " + |
| 415 |
|
| 416 |
"blogger_editpost() blogger_getpost() blogger_getrecentposts() blogger_gettemplate() blogger_getuserinfo() blogger_getusersblogs() " + |
| 417 |
|
| 418 |
"blogger_newpost() blogger_settemplate() bloginfo() bloginfo_rss() blurry() body() " + |
| 419 |
|
| 420 |
"body_class() bool_from_yn() build_query() build_query_string() buildcookieheader() bulk_edit_posts() " + |
| 421 |
|
| 422 |
"bulk_footer() bulk_header() bulk_upgrade() bulk_upgrader_skin() bump_request_timeout() cache_javascript_headers() " + |
| 423 |
|
| 424 |
"cache_oembed() cache_users() calculatetype() calendar_week_mod() call() callback() " + |
| 425 |
|
| 426 |
"camelize() cancel_comment_reply_link() cancelcrop() cancelselection() cancelupload() capital_p_dangit() " + |
| 427 |
|
| 428 |
"capitalize() cat_is_ancestor_of() category_description() category_exists() cb() cdata() " + |
| 429 |
|
| 430 |
"cdup() change_encoding() changedtype() changefinalcolor() check_admin_referer() check_ajax_referer() " + |
| 431 |
|
| 432 |
"check_and_publish_future_post() check_cache() check_column() check_comment() check_comment_flood_db() check_database_version() " + |
| 433 |
|
| 434 |
"check_import_new_users() check_pass_strength() check_server_timer() check_upload_mimes() check_upload_size() checkcache() " + |
| 435 |
|
| 436 |
"checkdeficiency() checked() checkipv() checkpassword() checkreadystate() checkwords() " + |
| 437 |
|
| 438 |
"choose_primary_blog() chunktransferdecode() clean_attachment_cache() clean_bookmark_cache() clean_category_cache() clean_comment_cache() " + |
| 439 |
|
| 440 |
"clean_object_term_cache() clean_page_cache() clean_post_cache() clean_pre() clean_term_cache() clean_url() " + |
| 441 |
|
| 442 |
"clean_user_cache() clear() clear_global_post_cache() clearaddresses() clearallrecipients() clearattachments() " + |
| 443 |
|
| 444 |
"clearbccs() clearccs() clearcustomheaders() clearreplytos() clickhandler() client_error() " + |
| 445 |
|
| 446 |
"clone() close() closefullscreen() cmpr_strlen() codepoint_to_utf() codepress_footer_js() " + |
| 447 |
|
| 448 |
"codepress_get_lang() collect() colname() colorpicker() colorpicker_highlightcolor() colorpicker_pickcolor() " + |
| 449 |
|
| 450 |
"colorpicker_select() colorpicker_show() colorpicker_writediv() comment_author() comment_author_email() comment_author_email_link() " + |
| 451 |
|
| 452 |
"comment_author_ip() comment_author_link() comment_author_rss() comment_author_url() comment_author_url_link() comment_block() " + |
| 453 |
|
| 454 |
"comment_class() comment_date() comment_excerpt() comment_exists() comment_footer_die() comment_form() " + |
| 455 |
|
| 456 |
"comment_form_title() comment_guid() comment_id() comment_id_fields() comment_link() comment_reply_link() " + |
| 457 |
|
| 458 |
"comment_text() comment_text_rss() comment_time() comment_type() comments_link() comments_link_feed() " + |
| 459 |
|
| 460 |
"comments_number() comments_open() comments_popup_link() comments_popup_script() comments_rss() comments_rss_link() " + |
| 461 |
|
| 462 |
"comments_template() compatible_gzinflate() compress() compress_parse_url() compression_test() compute_string_distance() " + |
| 463 |
|
| 464 |
"computecolor() concat() confirm_another_blog_signup() confirm_blog_signup() confirm_delete_users() confirm_user_signup() " + |
| 465 |
|
| 466 |
"connect() connected() consume() consume_range() content_encoding() content_url() " + |
| 467 |
|
| 468 |
"contextline() convert_chars() convert_smilies() convert_to_screen() convertentities() converthextorgb() " + |
| 469 |
|
| 470 |
"convertrgbtohex() convertversionstring() copy_dir() core_update_footer() core_upgrade_preamble() count_imported_posts() " + |
| 471 |
|
| 472 |
"count_many_users_posts() count_user_posts() count_users() countaddedlines() countdeletedlines() create() " + |
| 473 |
|
| 474 |
"create_attachment() create_empty_blog() create_initial_post_types() create_initial_taxonomies() create_post() create_user() " + |
| 475 |
|
| 476 |
"createbody() created() createdragger() createhandles() createheader() createmover() " + |
| 477 |
|
| 478 |
"crypt_private() css_includes() cssclass() current_after() current_before() current_filter() " + |
| 479 |
|
| 480 |
"current_theme_info() current_theme_supports() current_time() current_user_can() current_user_can_for_blog() curry() " + |
| 481 |
|
| 482 |
"custom_background() custom_image_header() cwd() d() dashboard_quota() dashboardtotals() " + |
| 483 |
|
| 484 |
"dasherize() data() datahtml() date_asctime() date_in() date_rfc() " + |
| 485 |
|
| 486 |
"date_rfc() date_strtotime() date_wcdtf() db_connect() db_version() dbdelta() " + |
| 487 |
|
| 488 |
"deactivate_plugin_before_upgrade() deactivate_plugins() deactivate_sitewide_plugin() debug() debug_fclose() debug_fopen() " + |
| 489 |
|
| 490 |
"debug_fwrite() decode() decompress() default_password_nag() default_password_nag_edit_user() default_password_nag_handler() " + |
| 491 |
|
| 492 |
"default_topic_count_scale() default_topic_count_text() defer() delay() delayed_autosave() delete() " + |
| 493 |
|
| 494 |
"delete_all_user_settings() delete_attachment() delete_blog_option() delete_comment_meta() delete_get_calendar_cache() delete_meta() " + |
| 495 |
|
| 496 |
"delete_metadata() delete_oembed_caches() delete_old_plugin() delete_old_theme() delete_option() delete_plugins() " + |
| 497 |
|
| 498 |
"delete_post() delete_post_meta() delete_post_meta_by_key() delete_theme() delete_transient() delete_user_meta() " + |
| 499 |
|
| 500 |
"delete_user_option() delete_user_setting() delete_usermeta() deletebyindex() deletedline() deleteerror() " + |
| 501 |
|
| 502 |
"deletesuccess() deleteusersetting() dequeue() deslash() destroy() detect() " + |
| 503 |
|
| 504 |
"did_action() diff() difference() dirlist() disablecrop() disabled() " + |
| 505 |
|
| 506 |
"disablehandles() discover() discover_pingback_server_uri() dismiss_core_update() dismissed_updates() dispatch() " + |
| 507 |
|
| 508 |
"display_cached_file() display_callback() display_element() display_header() display_page_row() display_plugins_table() " + |
| 509 |
|
| 510 |
"display_setup_form() display_space_usage() display_theme() display_themes() displayitems() div() " + |
| 511 |
|
| 512 |
"do_action() do_action_ref_array() do_activate_header() do_all_pings() do_core_upgrade() do_dismiss_core_update() " + |
| 513 |
|
| 514 |
"do_enclose() do_feed() do_feed_atom() do_feed_rdf() do_feed_rss() do_feed_rss() " + |
| 515 |
|
| 516 |
"do_footer_items() do_head_items() do_item() do_items() do_meta_boxes() do_paging() " + |
| 517 |
|
| 518 |
"do_robots() do_settings_fields() do_settings_sections() do_shortcode() do_shortcode_tag() do_signup_header() " + |
| 519 |
|
| 520 |
"do_strip_htmltags() do_trackbacks() do_undismiss_core_update() docmouseup() documentation_link() dolly_css() " + |
| 521 |
|
| 522 |
"domain_exists() domove() done() doneselect() donudge() doparentsubmit() " + |
| 523 |
|
| 524 |
"doresize() doupdate() download_package() download_url() drag_drop_help() dragdiv() " + |
| 525 |
|
| 526 |
"dragmodehandler() drop_index() dropdown_categories() dropdown_cats() dropdown_link_categories() duplicate() " + |
| 527 |
|
| 528 |
"dvortr() dynamic_sidebar() eachslice() echo_entry() edaddtag() edbutton() " + |
| 529 |
|
| 530 |
"edcheckopentags() edclosealltags() edinsertcontent() edinsertimage() edinsertlink() edinserttag() " + |
| 531 |
|
| 532 |
"edit_bookmark_link() edit_comment() edit_comment_link() edit_link() edit_post() edit_post_link() " + |
| 533 |
|
| 534 |
"edit_tag_link() edit_user() edlink() edquicklink() edremovetag() edshowbutton() " + |
| 535 |
|
| 536 |
"edshowlinks() edspell() edtoolbar() element() element_implode() email_exists() " + |
| 537 |
|
| 538 |
"embed() embed_flash() embed_flv() embed_odeo() embed_quicktime() embed_wmedia() " + |
| 539 |
|
| 540 |
"empty() emptyline() enable_cache() enable_order_by_date() enable_xml_dump() enablecrop() " + |
| 541 |
|
| 542 |
"enablehandles() encode() encode() encode_instead_of_strip() encodefile() encodeheader() " + |
| 543 |
|
| 544 |
"encodeq() encodeq_callback() encodeqp() encodestring() encodeunsafe() encoding() " + |
| 545 |
|
| 546 |
"encoding_equals() encoding_name() encoding_value() end_el() end_element() end_lvl() " + |
| 547 |
|
| 548 |
"end_ns() endboundary() endelement() endswith() enqueue() enqueue_comment_hotkeys_js() " + |
| 549 |
|
| 550 |
"entncr() entities_decode() entity() error() error_handler() errorcode() " + |
| 551 |
|
| 552 |
"errorinfo() errorname() esc_attr() esc_attr__() esc_attr_e() esc_attr_x() " + |
| 553 |
|
| 554 |
"esc_html() esc_html__() esc_html_e() esc_html_x() esc_js() esc_sql() " + |
| 555 |
|
| 556 |
"esc_url() esc_url_raw() escape() escape_by_ref() escapehtml() evaljson() " + |
| 557 |
|
| 558 |
"evalscripts() evx() evy() exists() expand() export() " + |
| 559 |
|
| 560 |
"export_entries() export_entry() export_headers() export_original() export_to_file() export_translations() " + |
| 561 |
|
| 562 |
"export_wp() extend() extendelementwith() extension() extract_from_markers() extractbyindex() " + |
| 563 |
|
| 564 |
"extractscripts() f() fallback() fatal() favorite_actions() features() " + |
| 565 |
|
| 566 |
"feed_cdata() feed_content_type() feed_end_element() feed_links() feed_links_extra() feed_or_html() " + |
| 567 |
|
| 568 |
"feed_start_element() feedback() fetch() fetch_feed() fetch_rss() fetchform() " + |
| 569 |
|
| 570 |
"fetchlinks() fetchtext() fget() file_is_displayable_image() file_is_valid_image() file_name() " + |
| 571 |
|
| 572 |
"file_upload_upgrader() filedialogcomplete() filedialogstart() filequeued() filequeueerror() fileupload() " + |
| 573 |
|
| 574 |
"fill_query_vars() filter_ssl() find() find_base_dir() find_core_update() find_folder() " + |
| 575 |
|
| 576 |
"find_posts_div() findall() finddomclass() findelement() finished() fire() " + |
| 577 |
|
| 578 |
"firecontentloadedevent() first() fix_import_form_size() fix_phpmailer_messageid() fix_protocol() fixeol() " + |
| 579 |
|
| 580 |
"flatten() flipcoords() fliptab() floated_admin_avatar() flush_output() flush_rewrite_rules() " + |
| 581 |
|
| 582 |
"flush_rules() flush_widget_cache() footer() for_blog() forbidden() force_balance_tags() " + |
| 583 |
|
| 584 |
"force_feed() force_fsockopen() force_ssl_content() form() form_callback() form_option() " + |
| 585 |
|
| 586 |
"format_code_lang() format_to_edit() format_to_post() fput() fs_connect() ftp() " + |
| 587 |
|
| 588 |
"ftp_base() funky_javascript_callback() funky_javascript_fix() g() gallery_shortcode() gd_edit_image_support() " + |
| 589 |
|
| 590 |
"generate_random_password() generate_rewrite_rule() generate_rewrite_rules() generatenamedcolors() generatepicker() generatepreview() " + |
| 591 |
|
| 592 |
"generatewebcolors() generic_ping() generic_strings() gensalt_blowfish() gensalt_extended() gensalt_private() " + |
| 593 |
|
| 594 |
"get() get__template() get_accepted_content_type() get_active_blog_for_user() get_adjacent_post() get_adjacent_post_rel_link() " + |
| 595 |
|
| 596 |
"get_admin_page_parent() get_admin_page_title() get_admin_url() get_admin_users_for_domain() get_all_category_ids() get_all_discovered_feeds() " + |
| 597 |
|
| 598 |
"get_all_page_ids() get_all_user_settings() get_alloptions() get_alloptions_() get_allowed_mime_types() get_allowed_themes() " + |
| 599 |
|
| 600 |
"get_approved_comments() get_archive_template() get_archives() get_archives_link() get_attached_file() get_attachment() " + |
| 601 |
|
| 602 |
"get_attachment_fields_to_edit() get_attachment_icon() get_attachment_icon_src() get_attachment_innerhtml() get_attachment_link() get_attachment_taxonomies() " + |
| 603 |
|
| 604 |
"get_attachment_template() get_attachments() get_attachments_url() get_attribution() get_author() get_author_feed_link() " + |
| 605 |
|
| 606 |
"get_author_link() get_author_name() get_author_permastruct() get_author_posts_url() get_author_rss_link() get_author_template() " + |
| 607 |
|
| 608 |
"get_author_user_ids() get_authority() get_authors() get_autotoggle() get_available_languages() get_available_post_mime_types() " + |
| 609 |
|
| 610 |
"get_available_post_statuses() get_avatar() get_background_color() get_background_image() get_base() get_base_dir() " + |
| 611 |
|
| 612 |
"get_bitrate() get_blog_count() get_blog_details() get_blog_id_from_url() get_blog_list() get_blog_option() " + |
| 613 |
|
| 614 |
"get_blog_permalink() get_blog_post() get_blog_prefix() get_blog_status() get_blogaddress_by_domain() get_blogaddress_by_id() " + |
| 615 |
|
| 616 |
"get_blogaddress_by_name() get_bloginfo() get_bloginfo_rss() get_blogs_of_user() get_body_class() get_bookmark() " + |
| 617 |
|
| 618 |
"get_bookmark_field() get_bookmarks() get_boundary_post() get_boundary_post_rel_link() get_broken_themes() get_byteorder() " + |
| 619 |
|
| 620 |
"get_calendar() get_caller() get_cancel_comment_reply_link() get_caption() get_captions() get_cat_id() " + |
| 621 |
|
| 622 |
"get_cat_name() get_categories() get_categories_url() get_categories_xml() get_category() get_category_by_path() " + |
| 623 |
|
| 624 |
"get_category_by_slug() get_category_children() get_category_feed_link() get_category_link() get_category_parents() get_category_permastruct() " + |
| 625 |
|
| 626 |
"get_category_rss_link() get_category_template() get_category_to_edit() get_catname() get_channel_tags() get_channels() " + |
| 627 |
|
| 628 |
"get_children() get_clean_basedomain() get_cli_args() get_col() get_col_info() get_column_headers() " + |
| 629 |
|
| 630 |
"get_comment() get_comment_author() get_comment_author_email() get_comment_author_email_link() get_comment_author_ip() get_comment_author_link() " + |
| 631 |
|
| 632 |
"get_comment_author_rss() get_comment_author_url() get_comment_author_url_link() get_comment_class() get_comment_count() get_comment_date() " + |
| 633 |
|
| 634 |
"get_comment_excerpt() get_comment_feed_permastruct() get_comment_guid() get_comment_id() get_comment_id_fields() get_comment_link() " + |
| 635 |
|
| 636 |
"get_comment_meta() get_comment_pages_count() get_comment_reply_link() get_comment_statuses() get_comment_text() get_comment_time() " + |
| 637 |
|
| 638 |
"get_comment_to_edit() get_comment_type() get_commentdata() get_comments() get_comments_link() get_comments_number() " + |
| 639 |
|
| 640 |
"get_comments_pagenum_link() get_comments_popup_template() get_content() get_contents() get_contents_array() get_contributor() " + |
| 641 |
|
| 642 |
"get_contributors() get_copyright() get_core_updates() get_credit() get_credits() get_curl_version() " + |
| 643 |
|
| 644 |
"get_current_byte() get_current_column() get_current_line() get_current_site() get_current_site_name() get_current_theme() " + |
| 645 |
|
| 646 |
"get_current_user_id() get_currentuserinfo() get_custom_fields() get_dashboard_blog() get_data() get_date() " + |
| 647 |
|
| 648 |
"get_date_from_gmt() get_date_permastruct() get_date_template() get_day_link() get_day_permastruct() get_default_feed() " + |
| 649 |
|
| 650 |
"get_default_link_to_edit() get_default_page_to_edit() get_default_post_to_edit() get_delete_post_link() get_description() get_dirsize() " + |
| 651 |
|
| 652 |
"get_dropins() get_duration() get_edit_bookmark_link() get_edit_comment_link() get_edit_post_link() get_edit_tag_link() " + |
| 653 |
|
| 654 |
"get_editable_authors() get_editable_roles() get_editable_user_ids() get_element() get_email() get_enclosed() " + |
| 655 |
|
| 656 |
"get_enclosure() get_enclosures() get_encoding() get_endtime() get_entries_url() get_entry() " + |
| 657 |
|
| 658 |
"get_entry_url() get_error_code() get_error_codes() get_error_data() get_error_message() get_error_messages() " + |
| 659 |
|
| 660 |
"get_error_string() get_expression() get_extended() get_extension() get_extra_permastruct() get_favicon() " + |
| 661 |
|
| 662 |
"get_feed() get_feed_link() get_feed_permastruct() get_feed_tags() get_field_id() get_field_name() " + |
| 663 |
|
| 664 |
"get_file() get_file_description() get_filesystem_method() get_footer() get_fragment() get_framerate() " + |
| 665 |
|
| 666 |
"get_front_page_template() get_gmt_from_date() get_handler() get_hash() get_hashes() get_header() " + |
| 667 |
|
| 668 |
"get_header_image() get_header_textcolor() get_height() get_hidden_columns() get_hidden_meta_boxes() get_home_path() " + |
| 669 |
|
| 670 |
"get_home_template() get_home_url() get_host() get_html() get_id() get_id_from_blogname() " + |
| 671 |
|
| 672 |
"get_image_height() get_image_link() get_image_send_to_editor() get_image_tag() get_image_tags() get_image_title() " + |
| 673 |
|
| 674 |
"get_image_url() get_image_width() get_images_from_uri() get_imported_comments() get_imported_posts() get_importers() " + |
| 675 |
|
| 676 |
"get_index_rel_link() get_index_template() get_inline_data() get_intermediate_image_sizes() get_iri() get_item() " + |
| 677 |
|
| 678 |
"get_item_quantity() get_item_tags() get_items() get_keyword() get_keywords() get_label() " + |
| 679 |
|
| 680 |
"get_language() get_last_updated() get_lastcommentmodified() get_lastpostdate() get_lastpostmodified() get_latitude() " + |
| 681 |
|
| 682 |
"get_length() get_lines() get_link() get_link_to_edit() get_linkcatname() get_linkobjects() " + |
| 683 |
|
| 684 |
"get_linkobjectsbyname() get_linkrating() get_links() get_links_list() get_links_withrating() get_linksbyname() " + |
| 685 |
|
| 686 |
"get_linksbyname_withrating() get_local_date() get_locale() get_locale_stylesheet_uri() get_longitude() get_manifest() " + |
| 687 |
|
| 688 |
"get_media_item() get_media_items() get_media_url() get_medium() get_meridiem() get_meta_keys() " + |
| 689 |
|
| 690 |
"get_metadata() get_month() get_month_abbrev() get_month_link() get_month_permastruct() get_most_active_blogs() " + |
| 691 |
|
| 692 |
"get_most_recent_post_of_user() get_mu_plugins() get_name() get_names() get_nav_menu_locations() get_next_comments_link() " + |
| 693 |
|
| 694 |
"get_next_post() get_next_posts_link() get_next_posts_page_link() get_nonauthor_user_ids() get_num_queries() get_number_of_root_elements() " + |
| 695 |
|
| 696 |
"get_object_taxonomies() get_object_term_cache() get_objects_in_term() get_option() get_others_drafts() get_others_pending() " + |
| 697 |
|
| 698 |
"get_others_unpublished_posts() get_page() get_page_by_path() get_page_by_title() get_page_children() get_page_hierarchy() " + |
| 699 |
|
| 700 |
"get_page_link() get_page_of_comment() get_page_permastruct() get_page_statuses() get_page_template() get_page_templates() " + |
| 701 |
|
| 702 |
"get_page_uri() get_paged_template() get_pagenum_link() get_pages() get_parent_post_rel_link() get_path() " + |
| 703 |
|
| 704 |
"get_pending_comments_num() get_permalink() get_player() get_plugin_data() get_plugin_files() get_plugin_page_hook() " + |
| 705 |
|
| 706 |
"get_plugin_page_hookname() get_plugin_updates() get_plugins() get_plural_forms_count() get_port() get_post() " + |
| 707 |
|
| 708 |
"get_post_ancestors() get_post_class() get_post_comments_feed_link() get_post_custom() get_post_custom_keys() get_post_custom_values() " + |
| 709 |
|
| 710 |
"get_post_field() get_post_meta() get_post_meta_by_id() get_post_mime_type() get_post_mime_types() get_post_modified_time() " + |
| 711 |
|
| 712 |
"get_post_permalink() get_post_reply_link() get_post_stati() get_post_status() get_post_status_object() get_post_statuses() " + |
| 713 |
|
| 714 |
"get_post_taxonomies() get_post_thumbnail_id() get_post_time() get_post_to_edit() get_post_type() get_post_type_capabilities() " + |
| 715 |
|
| 716 |
"get_post_type_labels() get_post_type_object() get_post_types() get_postdata() get_posts() get_posts_by_author_sql() " + |
| 717 |
|
| 718 |
"get_posts_nav_link() get_preferred_from_update_core() get_previous_comments_link() get_previous_post() get_previous_posts_link() get_previous_posts_page_link() " + |
| 719 |
|
| 720 |
"get_private_posts_cap_sql() get_profile() get_publish_time() get_pung() get_queried_object() get_queried_object_id() " + |
| 721 |
|
| 722 |
"get_query() get_query_template() get_query_var() get_random_bytes() get_rating() get_ratings() " + |
| 723 |
|
| 724 |
"get_real_file_to_edit() get_real_type() get_registered_nav_menus() get_relationship() get_restriction() get_restrictions() " + |
| 725 |
|
| 726 |
"get_results() get_role() get_role_caps() get_row() get_rss() get_sample_permalink() " + |
| 727 |
|
| 728 |
"get_sample_permalink_html() get_sampling_rate() get_scheme() get_search_comments_feed_link() get_search_feed_link() get_search_form() " + |
| 729 |
|
| 730 |
"get_search_link() get_search_permastruct() get_search_query() get_search_template() get_service() get_service_url() " + |
| 731 |
|
| 732 |
"get_settings() get_settings_errors() get_shortcode_regex() get_shortcut_link() get_sidebar() get_single_template() " + |
| 733 |
|
| 734 |
"get_site_allowed_themes() get_site_url() get_sitestats() get_size() get_source() get_source_tags() " + |
| 735 |
|
| 736 |
"get_space_allowed() get_starttime() get_status_header_desc() get_stylesheet() get_stylesheet_directory() get_stylesheet_directory_uri() " + |
| 737 |
|
| 738 |
"get_stylesheet_uri() get_super_admins() get_tag() get_tag_feed_link() get_tag_link() get_tag_permastruct() " + |
| 739 |
|
| 740 |
"get_tag_template() get_tags() get_tags_to_edit() get_taxonomies() get_taxonomy() get_taxonomy_labels() " + |
| 741 |
|
| 742 |
"get_taxonomy_template() get_temp_dir() get_template() get_template_directory() get_template_directory_uri() get_template_part() " + |
| 743 |
|
| 744 |
"get_term() get_term_by() get_term_children() get_term_feed_link() get_term_field() get_term_link() " + |
| 745 |
|
| 746 |
"get_term_to_edit() get_terms() get_terms_to_edit() get_text() get_the_attachment_link() get_the_author() " + |
| 747 |
|
| 748 |
"get_the_author_aim() get_the_author_description() get_the_author_email() get_the_author_firstname() get_the_author_icq() get_the_author_id() " + |
| 749 |
|
| 750 |
"get_the_author_lastname() get_the_author_link() get_the_author_login() get_the_author_meta() get_the_author_msn() get_the_author_nickname() " + |
| 751 |
|
| 752 |
"get_the_author_posts() get_the_author_url() get_the_author_yim() get_the_category() get_the_category_by_id() get_the_category_list() " + |
| 753 |
|
| 754 |
"get_the_category_rss() get_the_content() get_the_content_feed() get_the_date() get_the_excerpt() get_the_generator() " + |
| 755 |
|
| 756 |
"get_the_guid() get_the_id() get_the_modified_author() get_the_modified_date() get_the_modified_time() get_the_password_form() " + |
| 757 |
|
| 758 |
"get_the_post_thumbnail() get_the_tag_list() get_the_tags() get_the_taxonomies() get_the_term_list() get_the_terms() " + |
| 759 |
|
| 760 |
"get_the_time() get_the_title() get_the_title_rss() get_theme() get_theme_data() get_theme_mod() " + |
| 761 |
|
| 762 |
"get_theme_root() get_theme_root_uri() get_theme_roots() get_theme_updates() get_themes() get_thumbnail() " + |
| 763 |
|
| 764 |
"get_thumbnails() get_title() get_to_ping() get_trackback_url() get_transient() get_translations_for_domain() " + |
| 765 |
|
| 766 |
"get_type() get_udims() get_upload_iframe_src() get_upload_space_available() get_url() get_user_by() " + |
| 767 |
|
| 768 |
"get_user_by_email() get_user_count() get_user_details() get_user_id_from_string() get_user_meta() get_user_metavalues() " + |
| 769 |
|
| 770 |
"get_user_option() get_user_setting() get_user_to_edit() get_userdata() get_userdatabylogin() get_userinfo() " + |
| 771 |
|
| 772 |
"get_usermeta() get_usernumposts() get_users_drafts() get_users_of_blog() get_value() get_var() " + |
| 773 |
|
| 774 |
"get_weekday() get_weekday_abbrev() get_weekday_initial() get_weekstartend() get_width() get_wp_title_rss() " + |
| 775 |
|
| 776 |
"get_year_link() get_year_permastruct() getallusersettings() getanchorposition() getanchorwindowposition() getattr() " + |
| 777 |
|
| 778 |
"getbool() getboundary() getbrowserhtml() getcapabilities() getchmod() getcolor() " + |
| 779 |
|
| 780 |
"getcolorpickerhtml() getcorner() getcount() getcsssize() getcurrentresult() getdelim() " + |
| 781 |
|
| 782 |
"getdiff() getelementswithclassname() geterrorcode() geterrormessage() getfile() getfilename() " + |
| 783 |
|
| 784 |
"getfinal() getfixed() getformat() getfullheader() gethchmod() getheadervalue() " + |
| 785 |
|
| 786 |
"getint() getiso() getlength() getlevel() getlocation() getlogger() " + |
| 787 |
|
| 788 |
"getmailmime() getmaxfiles() getmaxsize() getmedialisthtml() getnumchmodfromh() getoffset() " + |
| 789 |
|
| 790 |
"getoriginal() getparams() getpath() getpos() getrect() getrequestparam() " + |
| 791 |
|
| 792 |
"getresponse() getrgb() getrootelement() getselection() getselectvalue() getstr() " + |
| 793 |
|
| 794 |
"getstyle() getsuggestions() gettext_select_plural_form() gettimestamp() gettoken() gettokenname() " + |
| 795 |
|
| 796 |
"getupdate() getusersetting() getvalue() getxml() glob_pattern_match() glob_regexp() " + |
| 797 |
|
| 798 |
"global_terms() gonext() goprev() got_mod_rewrite() graceful_fail() grant_super_admin() " + |
| 799 |
|
| 800 |
"grep() group() gsub() gzip_compression() handle_() handle_content_type() " + |
| 801 |
|
| 802 |
"handle_request() handle_upload() has_action() has_cap() has_data() has_excerpt() " + |
| 803 |
|
| 804 |
"has_filter() has_meta() has_nav_menu() has_post_thumbnail() has_tag() hash_hmac() " + |
| 805 |
|
| 806 |
"hashpassword() hasmethod() hasmultibytes() have_comments() have_posts() head() " + |
| 807 |
|
| 808 |
"header_image() header_text() header_textcolor() headerline() hello() hello_dolly() " + |
| 809 |
|
| 810 |
"hello_dolly_get_lyric() help() hide() hide_errors() home_url() host() " + |
| 811 |
|
| 812 |
"html_type_rss() htmlentities() htmlspecialchars_decode() http_version() human_time_diff() iframe_footer() " + |
| 813 |
|
| 814 |
"iframe_header() iis_add_rewrite_rule() iis_delete_rewrite_rule() iis_rewrite_rule_exists() iis_save_url_rewrite_rules() iis_supports_permalinks() " + |
| 815 |
|
| 816 |
"iis_url_rewrite_rules() image() image_add_caption() image_align_input_fields() image_attachment_fields_to_edit() image_attachment_fields_to_save() " + |
| 817 |
|
| 818 |
"image_constrain_size_for_editor() image_downsize() image_edit_apply_changes() image_get_intermediate_size() image_hwstring() image_link_input_fields() " + |
| 819 |
|
| 820 |
"image_make_intermediate_size() image_media_send_to_editor() image_resize() image_resize_dimensions() image_selector() image_size_input_fields() " + |
| 821 |
|
| 822 |
"img_caption_shortcode() imgload() imgmousedown() import_from_file() import_from_reader() in_category() " + |
| 823 |
|
| 824 |
"in_default_dir() in_the_loop() include() includes_url() index() index_rel_link() " + |
| 825 |
|
| 826 |
"indexof() info() ingroupsof() init() init_query_flags() initialise_blog_option_info() " + |
| 827 |
|
| 828 |
"initialize() initialmenumaxdepth() inject() inline_edit_row() inline_edit_term_row() inlineimageexists() " + |
| 829 |
|
| 830 |
"insert() insert_blog() insert_editor() insert_plain_editor() insert_with_markers() insertaction() " + |
| 831 |
|
| 832 |
"insertborder() insertchar() insertdragbar() inserthandle() inserthelpiframe() insertmedia() " + |
| 833 |
|
| 834 |
"inspect() install() install_blog() install_blog_defaults() install_dashboard() install_featured() " + |
| 835 |
|
| 836 |
"install_global_terms() install_network() install_new() install_package() install_plugin_information() install_plugin_install_status() " + |
| 837 |
|
| 838 |
"install_plugins_upload() install_popular() install_popular_tags() install_search() install_search_form() install_strings() " + |
| 839 |
|
| 840 |
"install_theme_information() install_theme_search() install_theme_search_form() install_themes_dashboard() install_themes_feature_list() install_themes_featured() " + |
| 841 |
|
| 842 |
"install_themes_new() install_themes_updated() install_themes_upload() install_updated() interfaceupdate() interleave_changed_lines() " + |
| 843 |
|
| 844 |
"internal_error() interpolate() intersect() invalid_media() invoke() is_() " + |
| 845 |
|
| 846 |
"is_active_sidebar() is_active_widget() is_admin() is_archive() is_archived() is_atom() " + |
| 847 |
|
| 848 |
"is_attachment() is_author() is_available() is_binary() is_blog_installed() is_blog_user() " + |
| 849 |
|
| 850 |
"is_category() is_child_theme() is_client_error() is_comment_feed() is_comments_popup() is_date() " + |
| 851 |
|
| 852 |
"is_day() is_declared_content_ns() is_dynamic_sidebar() is_email() is_email_address_unsafe() is_enabled() " + |
| 853 |
|
| 854 |
"is_error() is_exists() is_feed() is_front_page() is_home() is_info() " + |
| 855 |
|
| 856 |
"is_isegment_nz_nc() is_lighttpd_before_() is_linear_whitespace() is_local_attachment() is_main_blog() is_month() " + |
| 857 |
|
| 858 |
"is_multisite() is_nav_menu() is_nav_menu_item() is_network_only_plugin() is_new_day() is_object_in_taxonomy() " + |
| 859 |
|
| 860 |
"is_object_in_term() is_ok() is_page() is_page_template() is_paged() is_plugin_active() " + |
| 861 |
|
| 862 |
"is_plugin_active_for_network() is_plugin_page() is_post_type_hierarchical() is_preview() is_redirect() is_robots() " + |
| 863 |
|
| 864 |
"is_role() is_rss() is_rtl() is_search() is_serialized() is_serialized_string() " + |
| 865 |
|
| 866 |
"is_server_error() is_single() is_singular() is_site_admin() is_sticky() is_subdomain_install() " + |
| 867 |
|
| 868 |
"is_success() is_super_admin() is_tag() is_tax() is_taxonomy() is_taxonomy_hierarchical() " + |
| 869 |
|
| 870 |
"is_term() is_textdomain_loaded() is_time() is_trackback() is_uninstallable_plugin() is_upload_space_available() " + |
| 871 |
|
| 872 |
"is_user_logged_in() is_user_member_of_blog() is_user_option_local() is_user_over_quota() is_user_spammy() is_valid() " + |
| 873 |
|
| 874 |
"is_wp_error() is_wpmu_sitewide_plugin() is_year() isarray() isdebugenabled() iselement() " + |
| 875 |
|
| 876 |
"isempty() iserror() iserrorenabled() isfatalenabled() isfunction() ishash() " + |
| 877 |
|
| 878 |
"ishtml() isinfoenabled() isjson() isleftclick() ismail() ismiddleclick() " + |
| 879 |
|
| 880 |
"isnumber() iso_timezone_to_offset() iso_to_datetime() isqmail() isrightclick() issendmail() " + |
| 881 |
|
| 882 |
"issmtp() isstring() isstruct() isundefined() isvisible() iswarnenabled() " + |
| 883 |
|
| 884 |
"itemajaxerror() iter() ixr_base() ixr_client() ixr_clientmulticall() ixr_date() " + |
| 885 |
|
| 886 |
"ixr_error() ixr_introspectionserver() ixr_message() ixr_request() ixr_server() ixr_value() " + |
| 887 |
|
| 888 |
"js() js_() js_() js_escape() js_includes() jsencode() " + |
| 889 |
|
| 890 |
"json_decode() json_encode() keys() klass() kses_init() kses_init_filters() " + |
| 891 |
|
| 892 |
"kses_remove_filters() lang() language_attributes() last() lastindexof() lcs() " + |
| 893 |
|
| 894 |
"length() length_required() level_reduction() like_escape() linear_whitespace() link_advanced_meta_box() " + |
| 895 |
|
| 896 |
"link_cat_row() link_categories_meta_box() link_pages() link_submit_meta_box() link_target_meta_box() link_xfn_meta_box() " + |
| 897 |
|
| 898 |
"links_add_base_url() links_add_target() links_popup_script() list_authors() list_cats() list_core_update() " + |
| 899 |
|
| 900 |
"list_files() list_meta() list_plugin_updates() list_theme_updates() listcontent() listmethods() " + |
| 901 |
|
| 902 |
"load() load_child_theme_textdomain() load_default_textdomain() load_image_to_edit() load_muplugin_textdomain() load_plugin_textdomain() " + |
| 903 |
|
| 904 |
"load_template() load_textdomain() load_theme_textdomain() locale_stylesheet() localize() locate_template() " + |
| 905 |
|
| 906 |
"log_app() login() login_header() login_pass_ok() logio() loopback() " + |
| 907 |
|
| 908 |
"lowercase_octets() magpierss() mailsend() main() maintenance_mode() maintenance_nag() " + |
| 909 |
|
| 910 |
"make_clickable() make_db_current() make_db_current_silent() make_entry() make_headers() make_plural_form_function() " + |
| 911 |
|
| 912 |
"make_site_theme() make_site_theme_from_default() make_site_theme_from_oldschool() make_url_footnote() makeobj() manage_columns_prefs() " + |
| 913 |
|
| 914 |
"map_attrs() map_meta_cap() maybe_add_column() maybe_add_existing_user_to_blog() maybe_create_table() maybe_disable_automattic_widgets() " + |
| 915 |
|
| 916 |
"maybe_drop_column() maybe_make_link() maybe_redirect_() maybe_run_ajax_cache() maybe_serialize() maybe_unserialize() " + |
| 917 |
|
| 918 |
"mce_escape() mce_put_file() mctabs() mdel() mdtm() media_buttons() " + |
| 919 |
|
| 920 |
"media_handle_sideload() media_handle_upload() media_post_single_attachment_fields_to_edit() media_send_to_editor() media_sideload_image() media_single_attachment_fields_to_edit() " + |
| 921 |
|
| 922 |
"media_upload_audio() media_upload_bypass_url() media_upload_file() media_upload_flash_bypass() media_upload_form() media_upload_form_handler() " + |
| 923 |
|
| 924 |
"media_upload_gallery() media_upload_gallery_form() media_upload_header() media_upload_html_bypass() media_upload_image() media_upload_library() " + |
| 925 |
|
| 926 |
"media_upload_library_form() media_upload_tabs() media_upload_type_form() media_upload_type_url_form() media_upload_use_flash() media_upload_video() " + |
| 927 |
|
| 928 |
"menu_page_url() merge() merge_items() merge_with() meta_box_prefs() meta_form() " + |
| 929 |
|
| 930 |
"methodhelp() methodize() methodsignature() mget() min_whitespace() mmkdir() " + |
| 931 |
|
| 932 |
"mod_rewrite_rules() mouseabs() move() movecontent() movehandles() moveoffset() " + |
| 933 |
|
| 934 |
"moveto() movingmousemove() moxiecode_json() moxiecode_jsonreader() moxiecode_logger() mput() " + |
| 935 |
|
| 936 |
"ms_cookie_constants() ms_deprecated_blogs_file() ms_file_constants() ms_not_installed() ms_site_check() ms_subdomain_constants() " + |
| 937 |
|
| 938 |
"ms_upload_constants() msghtml() mt_getcategorylist() mt_getpostcategories() mt_getrecentposttitles() mt_gettrackbackpings() " + |
| 939 |
|
| 940 |
"mt_publishpost() mt_setpostcategories() mt_supportedmethods() mt_supportedtextfilters() mtime() mu_dropdown_languages() " + |
| 941 |
|
| 942 |
"mu_options() multicall() mw_editpost() mw_getcategories() mw_getpost() mw_getrecentposts() " + |
| 943 |
|
| 944 |
"mw_newmediaobject() mw_newpost() mycursor() mysqldate() name_value() native_embed() " + |
| 945 |
|
| 946 |
"network_admin_url() network_domain_check() network_home_url() network_site_url() network_step() network_step() " + |
| 947 |
|
| 948 |
"new_line() new_user_email_admin_notice() newblog_notify_siteadmin() newselection() newtracker() newuser_notify_siteadmin() " + |
| 949 |
|
| 950 |
"next_comment() next_comments_link() next_image_link() next_post() next_post_link() next_post_rel_link() " + |
| 951 |
|
| 952 |
"next_posts() next_posts_link() next_widget_id_number() nextpage() nextresult() nfinal() " + |
| 953 |
|
| 954 |
"nlist() no_content() no_update_actions() nocache_headers() noindex() noop() " + |
| 955 |
|
| 956 |
"norig() normalize() normalize_url() normalize_whitespace() not_allowed() not_found() " + |
| 957 |
|
| 958 |
"nplurals_and_expression_from_header() ns_to_prefix() number_format_in() observe() ok() onblur() " + |
| 959 |
|
| 960 |
"oncatchange() onendcrop() onloadinit() openbrowser() opplockcorner() option_update_filter() " + |
| 961 |
|
| 962 |
"output() output_javascript() owner() page_attributes_meta_box() page_links() page_rewrite_rules() " + |
| 963 |
|
| 964 |
"page_rows() page_template_dropdown() page_uri_index() paged_walk() paginate_comments_links() paginate_links() " + |
| 965 |
|
| 966 |
"parent_dropdown() parent_post_rel_link() parenthesize_plural_exression() parentscroll() parse() parse_banner() " + |
| 967 |
|
| 968 |
"parse_date() parse_iri() parse_mime() parse_query() parse_query_vars() parse_request() " + |
| 969 |
|
| 970 |
"parse_wcdtf() parsecolor() parsecontextdiff() parseiso() parsekey() parselisting() " + |
| 971 |
|
| 972 |
"parsetimestamp() parsetxt() parseunifieddiff() partition() pass() pass_cache_data() " + |
| 973 |
|
| 974 |
"pass_file_data() passive() password() passwordhash() passwordstrength() patchcallback() " + |
| 975 |
|
| 976 |
"path_is_absolute() path_join() pathinfo() pclzip() pclziputilcopyblock() pclziputiloptiontext() " + |
| 977 |
|
| 978 |
"pclziputilpathinclusion() pclziputilpathreduction() pclziputilrename() pclziputiltranslatewinpath() pct() peek() " + |
| 979 |
|
| 980 |
"percent_encoding_normalization() permalink_anchor() permalink_link() permalink_single_rss() pick() pickcolor() " + |
| 981 |
|
| 982 |
"pingback() pingback_extensions_getpingbacks() pingback_ping() pings_open() pluck() plugin_basename() " + |
| 983 |
|
| 984 |
"plugin_dir_path() plugin_dir_url() plugin_info() plugin_installer_skin() plugin_sandbox_scrape() plugin_upgrader_skin() " + |
| 985 |
|
| 986 |
"plugins_api() plugins_search_help() plugins_url() poify() pointer() pointerx() " + |
| 987 |
|
| 988 |
"pointery() polldoscroll() pomo_cachedfilereader() pomo_cachedintfilereader() pomo_filereader() pomo_reader() " + |
| 989 |
|
| 990 |
"pomo_stringreader() pop() pop_list() poperror() popstat() populate_network() " + |
| 991 |
|
| 992 |
"populate_options() populate_roles() populate_roles_() populate_roles_() populate_roles_() populate_roles_() " + |
| 993 |
|
| 994 |
"populate_roles_() populate_roles_() populate_roles_() populate_roles_() popuplinks() popupwindow() " + |
| 995 |
|
| 996 |
"popupwindow_attachlistener() popupwindow_autohide() popupwindow_getxyposition() popupwindow_hideifnotclicked() popupwindow_hidepopup() popupwindow_hidepopupwindows() " + |
| 997 |
|
| 998 |
"popupwindow_isclicked() popupwindow_populate() popupwindow_refresh() popupwindow_setsize() popupwindow_seturl() popupwindow_setwindowproperties() " + |
| 999 |
|
| 1000 |
"popupwindow_showpopup() port() pos() post() post_author_meta_box() post_categories_meta_box() " + |
| 1001 |
|
| 1002 |
"post_class() post_comment_meta_box() post_comment_meta_box_thead() post_comment_status_meta_box() post_comments_feed_link() post_custom() " + |
| 1003 |
|
| 1004 |
"post_custom_meta_box() post_excerpt_meta_box() post_exists() post_password_required() post_permalink() post_preview() " + |
| 1005 |
|
| 1006 |
"post_reply_link() post_revisions_meta_box() post_rows() post_slug_meta_box() post_submit_meta_box() post_tags_meta_box() " + |
| 1007 |
|
| 1008 |
"post_thumbnail_meta_box() post_trackback_meta_box() post_type_exists() post_type_supports() postbox_classes() posts_nav_link() " + |
| 1009 |
|
| 1010 |
"pre_schema_upgrade() preg_index() prep_atom_text_construct() prepare() prepare_query() prepare_simplepie_object_for_cache() " + |
| 1011 |
|
| 1012 |
"prepare_vars_for_template_usage() preparemediaitem() preparemediaiteminit() preparereplacement() prepend_attachment() prepend_each_line() " + |
| 1013 |
|
| 1014 |
"presize() press_it() prev_post_rel_link() preview_theme() preview_theme_ob_filter() preview_theme_ob_filter_callback() " + |
| 1015 |
|
| 1016 |
"previewchar() previous_comments_link() previous_image_link() previous_post() previous_post_link() previous_posts() " + |
| 1017 |
|
| 1018 |
"previous_posts_link() prevresult() print_admin_styles() print_column_headers() print_error() print_footer_scripts() " + |
| 1019 |
|
| 1020 |
"print_head_scripts() print_plugin_actions() print_plugins_table() print_scripts() print_scripts_ln() privacy_ping_filter() " + |
| 1021 |
|
| 1022 |
"privadd() privaddfile() privaddfilelist() privaddfileusingtempfile() privaddlist() privcalculatestoredfilename() " + |
| 1023 |
|
| 1024 |
"privcheckfileheaders() privcheckformat() privclosefd() privconvertheaderfileinfo() privcreate() privdeletebyrule() " + |
| 1025 |
|
| 1026 |
"privdircheck() privdisablemagicquotes() privduplicate() priverrorlog() priverrorreset() privextractbyrule() " + |
| 1027 |
|
| 1028 |
"privextractfile() privextractfileasstring() privextractfileinoutput() privextractfileusingtempfile() privfiledescrexpand() privfiledescrparseatt() " + |
| 1029 |
|
| 1030 |
"privlist() privmerge() privopenfd() privoptiondefaultthreshold() privparseoptions() privreadcentralfileheader() " + |
| 1031 |
|
| 1032 |
"privreadendcentraldir() privreadfileheader() privswapbackmagicquotes() privwritecentralfileheader() privwritecentralheader() privwritefileheader() " + |
| 1033 |
|
| 1034 |
"process_conditionals() process_default_headers() processheaders() processkey() processresponse() properties() " + |
| 1035 |
|
| 1036 |
"pusherror() put() put_attachment() put_contents() put_file() put_post() " + |
| 1037 |
|
| 1038 |
"pwd() px() query() query_posts() quit() quote() " + |
| 1039 |
|
| 1040 |
"quote_char() quote_escaped() rawlist() read() read_all() read_entry() " + |
| 1041 |
|
| 1042 |
"read_line() readaway() readint() readintarray() readtoken() readvalue() " + |
| 1043 |
|
| 1044 |
"reason() rebound() recent_comments_style() recipient() recurse_dirsize() redirect() " + |
| 1045 |
|
| 1046 |
"redirect_canonical() redirect_guess__permalink() redirect_mu_dashboard() redirect_post() redirect_this_site() redirect_user_to_blog() " + |
| 1047 |
|
| 1048 |
"reduce_string() refresh() refresh_blog_details() refresh_user_details() register() register_activation_hook() " + |
| 1049 |
|
| 1050 |
"register_admin_color_schemes() register_column_headers() register_deactivation_hook() register_default_headers() register_globals() register_handler() " + |
| 1051 |
|
| 1052 |
"register_importer() register_nav_menu() register_nav_menus() register_new_user() register_post_status() register_post_type() " + |
| 1053 |
|
| 1054 |
"register_setting() register_sidebar() register_sidebar_widget() register_sidebars() register_taxonomy() register_taxonomy_for_object_type() " + |
| 1055 |
|
| 1056 |
"register_theme_directory() register_uninstall_hook() register_widget() register_widget_control() reject() rel_canonical() " + |
| 1057 |
|
| 1058 |
"release() remove() remove_accents() remove_action() remove_all_actions() remove_all_caps() " + |
| 1059 |
|
| 1060 |
"remove_all_filters() remove_all_shortcodes() remove_cap() remove_div() remove_dot_segments() remove_filter() " + |
| 1061 |
|
| 1062 |
"remove_meta_box() remove_option_update_handler() remove_option_whitelist() remove_post_type_support() remove_query_arg() remove_rfc_comments() " + |
| 1063 |
|
| 1064 |
"remove_role() remove_shortcode() remove_theme_mod() remove_theme_mods() remove_theme_support() remove_user_from_blog() " + |
| 1065 |
|
| 1066 |
"removenetmaskspec() render() rendercharmaphtml() replace() replace_invalid_with_pct_encoding() replace_urls() " + |
| 1067 |
|
| 1068 |
"request() request_filesystem_credentials() require_if_theme_supports() reset_password() resetposition() resize() " + |
| 1069 |
|
| 1070 |
"resizeiframe() resizeiframeinit() resizeinputs() restore() restore_current_blog() results_are_paged() " + |
| 1071 |
|
| 1072 |
"retrieve_password() retrieve_widgets() reverse() revoke_super_admin() rewind_comments() rewind_posts() " + |
| 1073 |
|
| 1074 |
"rewrite_rules() rfc_strtime() rfcdate() rich_edit_exists() rsd_link() rss_enclosure() " + |
| 1075 |
|
| 1076 |
"rsscache() run() run_command() run_shortcode() s() sack() " + |
| 1077 |
|
| 1078 |
"safecss_filter_attr() sanitize() sanitize_bookmark() sanitize_bookmark_field() sanitize_category() sanitize_category_field() " + |
| 1079 |
|
| 1080 |
"sanitize_comment_cookies() sanitize_email() sanitize_file_name() sanitize_html_class() sanitize_key() sanitize_option() " + |
| 1081 |
|
| 1082 |
"sanitize_post() sanitize_post_field() sanitize_sql_orderby() sanitize_term() sanitize_term_field() sanitize_text_field() " + |
| 1083 |
|
| 1084 |
"sanitize_title() sanitize_title_with_dashes() sanitize_url() sanitize_user() sanitize_user_field() sanitize_user_object() " + |
| 1085 |
|
| 1086 |
"save() save_mod_rewrite_rules() save_settings() savecontent() savedomdocument() sayhello() " + |
| 1087 |
|
| 1088 |
"scan() screen_icon() screen_layout() screen_meta() screen_options() script_concat_settings() " + |
| 1089 |
|
| 1090 |
"search_for_folder() search_technorati() search_theme_directories() secret_salt_warning() secureheader() seekto() " + |
| 1091 |
|
| 1092 |
"seems_utf() select() select_plural_form() selectbyvalue() selectcurrentresult() selectdrag() " + |
| 1093 |
|
| 1094 |
"selected() selectingmousemove() self_link() selx() sely() send() " + |
| 1095 |
|
| 1096 |
"send_cmd() send_confirmation_on_profile_email() send_headers() send_through_proxy() send_to_editor() sendandmail() " + |
| 1097 |
|
| 1098 |
"sendhello() sendmailsend() sendmsg() sendormail() separate_comments() serializeparameters() " + |
| 1099 |
|
| 1100 |
"serve() serve_request() serverhostname() servervar() services_json() services_json_error() " + |
| 1101 |
|
| 1102 |
"set() set_() set_author_class() set_authority() set_autodiscovery_cache_duration() set_autodiscovery_level() " + |
| 1103 |
|
| 1104 |
"set_blog() set_blog_id() set_cache_class() set_cache_duration() set_cache_location() set_cache_name_function() " + |
| 1105 |
|
| 1106 |
"set_caption_class() set_category_base() set_category_class() set_content_type_sniffer_class() set_copyright_class() set_credit_class() " + |
| 1107 |
|
| 1108 |
"set_current_entry() set_current_screen() set_current_user() set_custom_fields() set_editor() set_enclosure_class() " + |
| 1109 |
|
| 1110 |
"set_favicon_handler() set_feed_url() set_file() set_file_class() set_fragment() set_group() " + |
| 1111 |
|
| 1112 |
"set_header() set_headers() set_host() set_image_handler() set_input_encoding() set_item_class() " + |
| 1113 |
|
| 1114 |
"set_item_limit() set_javascript() set_locator_class() set_max_checked_feeds() set_output_encoding() set_parser_class() " + |
| 1115 |
|
| 1116 |
"set_path() set_permalink_structure() set_port() set_post_thumbnail_size() set_post_type() set_prefix() " + |
| 1117 |
|
| 1118 |
"set_query() set_query_var() set_rating_class() set_raw_data() set_restriction_class() set_result() " + |
| 1119 |
|
| 1120 |
"set_role() set_sanitize_class() set_scheme() set_screen_options() set_source_class() set_stupidly_fast() " + |
| 1121 |
|
| 1122 |
"set_submit_multipart() set_submit_normal() set_tag_base() set_theme_mod() set_timeout() set_transient() " + |
| 1123 |
|
| 1124 |
"set_upgrader() set_url_replacements() set_user() set_user_setting() set_useragent() set_userinfo() " + |
| 1125 |
|
| 1126 |
"setbool() setbrowserdisabled() setcallbacks() setcapabilities() setcol() setcookies() " + |
| 1127 |
|
| 1128 |
"setcurrent() setcursor() setendian() seterror() setfilename() setformat() " + |
| 1129 |
|
| 1130 |
"setlanguage() setlevel() setmaxfiles() setmaxsize() setmessagetype() setoptions() " + |
| 1131 |
|
| 1132 |
"setoptionsnew() setpath() setpressed() setselect() setselection() setselectraw() " + |
| 1133 |
|
| 1134 |
"setserver() setstr() settimeout() settings_errors() settings_fields() setumask() " + |
| 1135 |
|
| 1136 |
"setup_photo_actions() setup_postdata() setup_userdata() setusersetting() setwordwrap() setwrap() " + |
| 1137 |
|
| 1138 |
"shake() shortcode() shortcode_atts() shortcode_parse_atts() shortcode_unautop() should_decode() " + |
| 1139 |
|
| 1140 |
"show() show_blog_form() show_default_header_selector() show_errors() show_message() show_post_thumbnail_warning() " + |
| 1141 |
|
| 1142 |
"show_user_form() showcolor() showhandles() shutdown_action_hook() sign() signup_another_blog() " + |
| 1143 |
|
| 1144 |
"signup_blog() signup_nonce_check() signup_nonce_fields() signup_user() signuppageheaders() simplepie() " + |
| 1145 |
|
| 1146 |
"simplepie_author() simplepie_cache() simplepie_cache_file() simplepie_cache_mysql() simplepie_caption() simplepie_category() " + |
| 1147 |
|
| 1148 |
"simplepie_content_type_sniffer() simplepie_copyright() simplepie_credit() simplepie_decode_html_entities() simplepie_enclosure() simplepie_file() " + |
| 1149 |
|
| 1150 |
"simplepie_gzdecode() simplepie_http_parser() simplepie_iri() simplepie_item() simplepie_locator() simplepie_parse_date() " + |
| 1151 |
|
| 1152 |
"simplepie_rating() simplepie_restriction() simplepie_source() simplepie_xml_declaration_parser() single_cat_title() single_month_title() " + |
| 1153 |
|
| 1154 |
"single_post_title() single_tag_title() site() site_admin_notice() site_url() size() " + |
| 1155 |
|
| 1156 |
"size_format() skip() skip_whitespace() smtp() smtpclose() smtpconnect() " + |
| 1157 |
|
| 1158 |
"smtpsend() sort_items() sort_menu() sortby() space_seperated_tokens() spawn_cron() " + |
| 1159 |
|
| 1160 |
"spellchecker() split_ns() splitv() standalone_equals() standalone_name() standalone_value() " + |
| 1161 |
|
| 1162 |
"start_el() start_element() start_lvl() start_ns() start_post_rel_link() start_wp() " + |
| 1163 |
|
| 1164 |
"startdragmode() startelement() startselection() startswith() stats() status() " + |
| 1165 |
|
| 1166 |
"status_header() step() step_() step_() step_() stick_post() " + |
| 1167 |
|
| 1168 |
"sticky_class() stop() stop_the_insanity() stopobserving() str() stream_preview_image() " + |
| 1169 |
|
| 1170 |
"strip() strip_attributes() strip_clf() strip_comments() strip_htmltags() strip_shortcodes() " + |
| 1171 |
|
| 1172 |
"stripalpha() stripscripts() stripslashes_deep() striptags() strlen() styleoptions() " + |
| 1173 |
|
| 1174 |
"sub() subclass() submit() submithandler() submitlinks() submittext() " + |
| 1175 |
|
| 1176 |
"subscribe_aol() subscribe_bloglines() subscribe_eskobo() subscribe_feed() subscribe_feedfeeds() subscribe_feedster() " + |
| 1177 |
|
| 1178 |
"subscribe_google() subscribe_gritwire() subscribe_itunes() subscribe_msn() subscribe_netvibes() subscribe_newsburst() " + |
| 1179 |
|
| 1180 |
"subscribe_newsgator() subscribe_odeo() subscribe_outlook() subscribe_podcast() subscribe_podnova() subscribe_rojo() " + |
| 1181 |
|
| 1182 |
"subscribe_service() subscribe_url() subscribe_yahoo() succ() suggest() supports_collation() " + |
| 1183 |
|
| 1184 |
"suppress_errors() swfuploadloadfailed() swfuploadpreload() switch_theme() switch_to_blog() switchtype() " + |
| 1185 |
|
| 1186 |
"switchuploader() sync_category_tag_slugs() systype() tables() tag_close() tag_description() " + |
| 1187 |
|
| 1188 |
"tag_escape() tag_exists() tag_open() tag_rows() take_action() taxonomy_exists() " + |
| 1189 |
|
| 1190 |
"tb_click() tb_close() tb_detectmacxff() tb_getpagesize() tb_init() tb_parsequery() " + |
| 1191 |
|
| 1192 |
"tb_position() tb_remove() tb_show() tb_showiframe() tellscaled() tellselect() " + |
| 1193 |
|
| 1194 |
"term_description() term_exists() test() text_diff() text_diff_op_add() text_diff_op_change() " + |
| 1195 |
|
| 1196 |
"text_diff_op_copy() text_diff_op_delete() text_diff_renderer() text_diff_renderer_table() text_mappeddiff() text_or_binary() " + |
| 1197 |
|
| 1198 |
"textline() the_attachment_link() the_attachment_links() the_attachments_url() the_author() the_author_aim() " + |
| 1199 |
|
| 1200 |
"the_author_description() the_author_email() the_author_firstname() the_author_icq() the_author_id() the_author_lastname() " + |
| 1201 |
|
| 1202 |
"the_author_link() the_author_login() the_author_meta() the_author_msn() the_author_nickname() the_author_posts() " + |
| 1203 |
|
| 1204 |
"the_author_posts_link() the_author_url() the_author_yim() the_categories_url() the_category() the_category_head() " + |
| 1205 |
|
| 1206 |
"the_category_id() the_category_rss() the_comment() the_content() the_content_feed() the_content_rss() " + |
| 1207 |
|
| 1208 |
"the_date() the_date_xml() the_editor() the_entries_url() the_entry_url() the_excerpt() " + |
| 1209 |
|
| 1210 |
"the_excerpt_rss() the_feed_link() the_generator() the_guid() the_id() the_media_upload_tabs() " + |
| 1211 |
|
| 1212 |
"the_media_url() the_meta() the_modified_author() the_modified_date() the_modified_time() the_permalink() " + |
| 1213 |
|
| 1214 |
"the_permalink_rss() the_post() the_post_password() the_post_thumbnail() the_search_query() the_shortlink() " + |
| 1215 |
|
| 1216 |
"the_tags() the_taxonomies() the_terms() the_time() the_title() the_title_attribute() " + |
| 1217 |
|
| 1218 |
"the_title_rss() the_weekday() the_weekday_date() the_widget() theme_info() theme_installer_skin() " + |
| 1219 |
|
| 1220 |
"theme_update_available() theme_upgrader_skin() themes_api() throwerror() time_hms() timer_start() " + |
| 1221 |
|
| 1222 |
"timer_stop() times() tinymce_include() toarray() toback() tocolorpart() " + |
| 1223 |
|
| 1224 |
"tofront() toggle_text() togglewordwrap() tohtml() tojson() toobject() " + |
| 1225 |
|
| 1226 |
"toospath() top() topaddedstring() toquerypair() toqueryparams() toquerystring() " + |
| 1227 |
|
| 1228 |
"touch_time() toxml() trackback() trackback_rdf() trackback_response() trackback_url() " + |
| 1229 |
|
| 1230 |
"trackback_url_list() trackmove() trackup() trailingslashit() translate() translate_entry() " + |
| 1231 |
|
| 1232 |
"translate_level_to_cap() translate_level_to_role() translate_plural() translate_smiley() translate_user_role() translate_with_context() " + |
| 1233 |
|
| 1234 |
"translate_with_gettext_context() translation_entry() trim_quotes() trimnewlines() trimsize() truncate() " + |
| 1235 |
|
| 1236 |
"turn() twentyten_admin_header_style() twentyten_auto_excerpt_more() twentyten_comment() twentyten_continue_reading_link() twentyten_custom_excerpt_more() " + |
| 1237 |
|
| 1238 |
"twentyten_excerpt_length() twentyten_page_menu_args() twentyten_posted_in() twentyten_posted_on() twentyten_remove_gallery_css() twentyten_remove_recent_comments_style() " + |
| 1239 |
|
| 1240 |
"twentyten_setup() twentyten_widgets_init() type_url_form_audio() type_url_form_file() type_url_form_image() type_url_form_video() " + |
| 1241 |
|
| 1242 |
"uidl() uncomment_rfc() uncompress() unconsume() underscore() undismiss_core_update() " + |
| 1243 |
|
| 1244 |
"unescapehtml() unfilterjson() uninstall_plugin() uniq() unknown() unload_textdomain() " + |
| 1245 |
|
| 1246 |
"unloadhandler() unpack_package() unpoify() unregister() unregister_default_headers() unregister_handler() " + |
| 1247 |
|
| 1248 |
"unregister_nav_menu() unregister_setting() unregister_sidebar() unregister_sidebar_widget() unregister_widget() unregister_widget_control() " + |
| 1249 |
|
| 1250 |
"unscale() unset() unset_children() unstick_post() untrailingslashit() unzip_file() " + |
| 1251 |
|
| 1252 |
"update() update_archived() update_attached_file() update_blog_details() update_blog_option() update_blog_public() " + |
| 1253 |
|
| 1254 |
"update_blog_status() update_callback() update_category_cache() update_comment_cache() update_comment_meta() update_core() " + |
| 1255 |
|
| 1256 |
"update_gallery_tab() update_home_siteurl() update_meta() update_meta_cache() update_metadata() update_nag() " + |
| 1257 |
|
| 1258 |
"update_object_term_cache() update_option() update_option_new_admin_email() update_page_cache() update_post_cache() update_post_caches() " + |
| 1259 |
|
| 1260 |
"update_post_meta() update_postmeta_cache() update_posts_count() update_recently_edited() update_right_now_message() update_term_cache() " + |
| 1261 |
|
| 1262 |
"update_timer() update_user_caches() update_user_level_from_caps() update_user_meta() update_user_option() update_user_status() " + |
| 1263 |
|
| 1264 |
"update_usermeta() updatecolor() updatecount() updatecurrentdepth() updatelight() updatemediaform() " + |
| 1265 |
|
| 1266 |
"updatemenumaxdepth() updatepreview() updatesharedvars() updatetext() updatevisibility() updatevisible() " + |
| 1267 |
|
| 1268 |
"upgrade() upgrade_() upgrade_() upgrade_() upgrade_() upgrade_() " + |
| 1269 |
|
| 1270 |
"upgrade_() upgrade_() upgrade__old_tables() upgrade__options_table() upgrade_() upgrade_() " + |
| 1271 |
|
| 1272 |
"upgrade_() upgrade_() upgrade_() upgrade_() upgrade_() upgrade_all() " + |
| 1273 |
|
| 1274 |
"upgrade_network() upgrade_old_slugs() upgrade_strings() upit() upload_is_file_too_big() upload_is_user_over_quota() " + |
| 1275 |
|
| 1276 |
"upload_size_limit_filter() upload_space_setting() uploadcomplete() uploaderror() uploadprogress() uploadstart() " + |
| 1277 |
|
| 1278 |
"uploadsuccess() url_shorten() url_to_postid() urlencode_deep() use_authentication() use_codepress() " + |
| 1279 |
|
| 1280 |
"use_ssl_preference() user() user_can_access_admin_page() user_can_create_draft() user_can_create_post() user_can_delete_post() " + |
| 1281 |
|
| 1282 |
"user_can_delete_post_comments() user_can_edit_post() user_can_edit_post_comments() user_can_edit_post_date() user_can_edit_user() user_can_richedit() " + |
| 1283 |
|
| 1284 |
"user_can_set_post_date() user_pass_ok() user_row() user_trailingslashit() username() username_exists() " + |
| 1285 |
|
| 1286 |
"users_can_register_signup_filter() using_index_permalinks() using_mod_rewrite_permalinks() using_permalinks() utfutf() utfutf() " + |
| 1287 |
|
| 1288 |
"utf_bad_replace() utf_uri_encode() utfcharboundary() valid_unicode() validate_active_plugins() validate_another_blog_signup() " + |
| 1289 |
|
| 1290 |
"validate_blog_form() validate_blog_signup() validate_current_theme() validate_email() validate_file_to_edit() validate_plugin() " + |
| 1291 |
|
| 1292 |
"validate_user_form() validate_user_signup() validate_username() value() value_char() values() " + |
| 1293 |
|
| 1294 |
"verify() version_equals() version_name() version_value() viewx() viewy() " + |
| 1295 |
|
| 1296 |
"wa_posts_where_include_drafts_filter() walk() walk_category_dropdown_tree() walk_category_tree() walk_nav_menu_tree() walk_page_dropdown_tree() " + |
| 1297 |
|
| 1298 |
"walk_page_tree() warn() watchkeys() weblog_ping() welcome_user_msg_filter() widget() " + |
| 1299 |
|
| 1300 |
"widget_akismet() widget_akismet_control() widget_akismet_register() widget_akismet_style() win_is_writable() windows__to_utf() " + |
| 1301 |
|
| 1302 |
"without() wlwmanifest_link() wordpressmu_wp_mail_from() wp() wp_add_dashboard_widget() wp_add_post_tags() " + |
| 1303 |
|
| 1304 |
"wp_admin_css() wp_admin_css_color() wp_admin_css_uri() wp_ajax_response() wp_allow_comment() wp_attachment_is_image() " + |
| 1305 |
|
| 1306 |
"wp_attempt_focus() wp_authenticate() wp_authenticate_cookie() wp_authenticate_username_password() wp_blacklist_check() wp_cache_add() " + |
| 1307 |
|
| 1308 |
"wp_cache_add_global_groups() wp_cache_add_non_persistent_groups() wp_cache_close() wp_cache_delete() wp_cache_flush() wp_cache_get() " + |
| 1309 |
|
| 1310 |
"wp_cache_init() wp_cache_replace() wp_cache_reset() wp_cache_set() wp_category_checklist() wp_check_filetype() " + |
| 1311 |
|
| 1312 |
"wp_check_filetype_and_ext() wp_check_for_changed_slugs() wp_check_invalid_utf() wp_check_mysql_version() wp_check_password() wp_check_php_mysql_versions() " + |
| 1313 |
|
| 1314 |
"wp_check_post_lock() wp_clear_auth_cookie() wp_clear_scheduled_hook() wp_clearcookie() wp_clone() wp_comment_form_unfiltered_html_nonce() " + |
| 1315 |
|
| 1316 |
"wp_comment_reply() wp_comment_trashnotice() wp_constrain_dimensions() wp_content_dir() wp_convert_bytes_to_hr() wp_convert_hr_to_bytes() " + |
| 1317 |
|
| 1318 |
"wp_convert_widget_settings() wp_cookie_constants() wp_count_attachments() wp_count_comments() wp_count_posts() wp_count_terms() " + |
| 1319 |
|
| 1320 |
"wp_create_categories() wp_create_category() wp_create_nav_menu() wp_create_nonce() wp_create_post_autosave() wp_create_tag() " + |
| 1321 |
|
| 1322 |
"wp_create_term() wp_create_thumbnail() wp_create_user() wp_cron() wp_crop_image() wp_dashboard() " + |
| 1323 |
|
| 1324 |
"wp_dashboard_cached_rss_widget() wp_dashboard_empty() wp_dashboard_incoming_links() wp_dashboard_incoming_links_control() wp_dashboard_incoming_links_output() wp_dashboard_plugins() " + |
| 1325 |
|
| 1326 |
"wp_dashboard_plugins_output() wp_dashboard_primary() wp_dashboard_primary_control() wp_dashboard_quick_press() wp_dashboard_quick_press_output() wp_dashboard_recent_comments() " + |
| 1327 |
|
| 1328 |
"wp_dashboard_recent_comments_control() wp_dashboard_recent_drafts() wp_dashboard_right_now() wp_dashboard_rss_control() wp_dashboard_rss_output() wp_dashboard_secondary() " + |
| 1329 |
|
| 1330 |
"wp_dashboard_secondary_control() wp_dashboard_secondary_output() wp_dashboard_setup() wp_dashboard_trigger_widget_control() wp_debug_mode() wp_default_editor() " + |
| 1331 |
|
| 1332 |
"wp_default_scripts() wp_default_styles() wp_defer_comment_counting() wp_defer_term_counting() wp_delete_attachment() wp_delete_category() " + |
| 1333 |
|
| 1334 |
"wp_delete_comment() wp_delete_link() wp_delete_nav_menu() wp_delete_object_term_relationships() wp_delete_post() wp_delete_post_revision() " + |
| 1335 |
|
| 1336 |
"wp_delete_term() wp_delete_user() wp_deletecategory() wp_deletecomment() wp_deletepage() wp_dependencies() " + |
| 1337 |
|
| 1338 |
"wp_deregister_script() wp_deregister_style() wp_die() wp_doc_link_parse() wp_dropdown_categories() wp_dropdown_cats() " + |
| 1339 |
|
| 1340 |
"wp_dropdown_pages() wp_dropdown_roles() wp_dropdown_users() wp_edit_attachments_query() wp_edit_posts_query() wp_editcomment() " + |
| 1341 |
|
| 1342 |
"wp_editpage() wp_embed() wp_embed_defaults() wp_embed_handler_googlevideo() wp_embed_register_handler() wp_embed_unregister_handler() " + |
| 1343 |
|
| 1344 |
"wp_enqueue_script() wp_enqueue_scripts() wp_enqueue_style() wp_error() wp_exif_datets() wp_exif_fracdec() " + |
| 1345 |
|
| 1346 |
"wp_expand_dimensions() wp_explain_nonce() wp_exttype() wp_favicon_request() wp_feed_cache() wp_feed_cache_transient() " + |
| 1347 |
|
| 1348 |
"wp_filesystem() wp_filesystem_direct() wp_filesystem_ftpext() wp_filesystem_ftpsockets() wp_filesystem_ssh() wp_filter_comment() " + |
| 1349 |
|
| 1350 |
"wp_filter_kses() wp_filter_nohtml_kses() wp_filter_post_kses() wp_fix_server_vars() wp_footer() wp_functionality_constants() " + |
| 1351 |
|
| 1352 |
"wp_generate_attachment_metadata() wp_generate_auth_cookie() wp_generate_password() wp_generate_tag_cloud() wp_generator() wp_get_active_and_valid_plugins() " + |
| 1353 |
|
| 1354 |
"wp_get_archives() wp_get_associated_nav_menu_items() wp_get_attachment_image() wp_get_attachment_image_src() wp_get_attachment_link() wp_get_attachment_metadata() " + |
| 1355 |
|
| 1356 |
"wp_get_attachment_thumb_file() wp_get_attachment_thumb_url() wp_get_attachment_url() wp_get_comment_status() wp_get_cookie_login() wp_get_current_commenter() " + |
| 1357 |
|
| 1358 |
"wp_get_current_user() wp_get_http() wp_get_http_headers() wp_get_link_cats() wp_get_links() wp_get_linksbyname() " + |
| 1359 |
|
| 1360 |
"wp_get_mu_plugins() wp_get_nav_menu_items() wp_get_nav_menu_object() wp_get_nav_menu_to_edit() wp_get_nav_menus() wp_get_nocache_headers() " + |
| 1361 |
|
| 1362 |
"wp_get_object_terms() wp_get_original_referer() wp_get_post_autosave() wp_get_post_categories() wp_get_post_cats() wp_get_post_revision() " + |
| 1363 |
|
| 1364 |
"wp_get_post_revisions() wp_get_post_tags() wp_get_post_terms() wp_get_recent_posts() wp_get_referer() wp_get_schedule() " + |
| 1365 |
|
| 1366 |
"wp_get_schedules() wp_get_shortlink() wp_get_sidebars_widgets() wp_get_single_post() wp_get_widget_defaults() wp_getauthors() " + |
| 1367 |
|
| 1368 |
"wp_getcomment() wp_getcommentcount() wp_getcomments() wp_getcommentstatuslist() wp_getoptions() wp_getpage() " + |
| 1369 |
|
| 1370 |
"wp_getpagelist() wp_getpages() wp_getpagestatuslist() wp_getpagetemplates() wp_getpoststatuslist() wp_gettags() " + |
| 1371 |
|
| 1372 |
"wp_getusersblogs() wp_guess_url() wp_handle_sideload() wp_handle_upload() wp_handle_upload_error() wp_hash() " + |
| 1373 |
|
| 1374 |
"wp_hash_password() wp_head() wp_html_excerpt() wp_htmledit_pre() wp_http() wp_http_cookie() " + |
| 1375 |
|
| 1376 |
"wp_iframe() wp_image_editor() wp_imagecreatetruecolor() wp_import_cleanup() wp_import_handle_upload() wp_import_upload_form() " + |
| 1377 |
|
| 1378 |
"wp_importer() wp_initial_constants() wp_initial_nav_menu_meta_boxes() wp_insert_attachment() wp_insert_category() wp_insert_comment() " + |
| 1379 |
|
| 1380 |
"wp_insert_link() wp_insert_post() wp_insert_term() wp_insert_user() wp_install() wp_install_defaults() " + |
| 1381 |
|
| 1382 |
"wp_is_post_autosave() wp_is_post_revision() wp_iso_descrambler() wp_just_in_time_script_localization() wp_kses() wp_kses_array_lc() " + |
| 1383 |
|
| 1384 |
"wp_kses_attr() wp_kses_bad_protocol() wp_kses_bad_protocol_once() wp_kses_bad_protocol_once() wp_kses_check_attr_val() wp_kses_data() " + |
| 1385 |
|
| 1386 |
"wp_kses_decode_entities() wp_kses_hair() wp_kses_hook() wp_kses_html_error() wp_kses_js_entities() wp_kses_named_entities() " + |
| 1387 |
|
| 1388 |
"wp_kses_no_null() wp_kses_normalize_entities() wp_kses_normalize_entities() wp_kses_normalize_entities() wp_kses_post() wp_kses_split() " + |
| 1389 |
|
| 1390 |
"wp_kses_split() wp_kses_stripslashes() wp_kses_version() wp_link_category_checklist() wp_link_pages() wp_list_authors() " + |
| 1391 |
|
| 1392 |
"wp_list_bookmarks() wp_list_categories() wp_list_cats() wp_list_comments() wp_list_pages() wp_list_post_revisions() " + |
| 1393 |
|
| 1394 |
"wp_list_widget_controls() wp_list_widget_controls_dynamic_sidebar() wp_list_widgets() wp_load_alloptions() wp_load_core_site_options() wp_load_image() " + |
| 1395 |
|
| 1396 |
"wp_locale() wp_localize_script() wp_login() wp_login_form() wp_login_url() wp_loginout() " + |
| 1397 |
|
| 1398 |
"wp_logout() wp_logout_url() wp_lostpassword_url() wp_magic_quotes() wp_mail() wp_maintenance() " + |
| 1399 |
|
| 1400 |
"wp_make_link_relative() wp_manage_media_columns() wp_manage_pages_columns() wp_manage_posts_columns() wp_match_mime_types() wp_matchesmapregex() " + |
| 1401 |
|
| 1402 |
"wp_max_upload_size() wp_menu_unfold() wp_meta() wp_mime_type_icon() wp_mkdir_p() wp_nav_menu() " + |
| 1403 |
|
| 1404 |
"wp_nav_menu_item_link_meta_box() wp_nav_menu_item_post_type_meta_box() wp_nav_menu_item_taxonomy_meta_box() wp_nav_menu_locations_meta_box() wp_nav_menu_manage_columns() wp_nav_menu_max_depth() " + |
| 1405 |
|
| 1406 |
"wp_nav_menu_post_type_meta_boxes() wp_nav_menu_setup() wp_nav_menu_taxonomy_meta_boxes() wp_nav_menu_widget() wp_new_blog_notification() wp_new_comment() " + |
| 1407 |
|
| 1408 |
"wp_new_user_notification() wp_newcategory() wp_newcomment() wp_newpage() wp_next_scheduled() wp_nonce_ays() " + |
| 1409 |
|
| 1410 |
"wp_nonce_field() wp_nonce_tick() wp_nonce_url() wp_not_installed() wp_notify_moderator() wp_notify_postauthor() " + |
| 1411 |
|
| 1412 |
"wp_object_cache() wp_oembed() wp_oembed_add_provider() wp_oembed_get() wp_old_slug_redirect() wp_original_referer_field() " + |
| 1413 |
|
| 1414 |
"wp_page_menu() wp_parse_auth_cookie() wp_parse_str() wp_password_change_notification() wp_plugin_directory_constants() wp_plugin_update_row() " + |
| 1415 |
|
| 1416 |
"wp_plugin_update_rows() wp_plugins_dir() wp_popular_terms_checklist() wp_post_mime_type_where() wp_post_revision_title() wp_pre_kses_less_than() " + |
| 1417 |
|
| 1418 |
"wp_pre_kses_less_than_callback() wp_print_footer_scripts() wp_print_head_scripts() wp_print_scripts() wp_print_styles() wp_protect_special_option() " + |
| 1419 |
|
| 1420 |
"wp_prototype_before_jquery() wp_publish_post() wp_query() wp_rand() wp_read_image_metadata() wp_redirect() " + |
| 1421 |
|
| 1422 |
"wp_referer_field() wp_register() wp_register_script() wp_register_sidebar_widget() wp_register_style() wp_register_widget_control() " + |
| 1423 |
|
| 1424 |
"wp_rel_nofollow() wp_rel_nofollow_callback() wp_remote_fopen() wp_remote_get() wp_remote_head() wp_remote_post() " + |
| 1425 |
|
| 1426 |
"wp_remote_request() wp_remote_retrieve_body() wp_remote_retrieve_header() wp_remote_retrieve_headers() wp_remote_retrieve_response_code() wp_remote_retrieve_response_message() " + |
| 1427 |
|
| 1428 |
"wp_reschedule_event() wp_reset_postdata() wp_reset_query() wp_reset_vars() wp_restore_image() wp_restore_post_revision() " + |
| 1429 |
|
| 1430 |
"wp_revoke_user() wp_rewrite() wp_rewrite_rules() wp_richedit_pre() wp_role() wp_roles() " + |
| 1431 |
|
| 1432 |
"wp_rss() wp_safe_redirect() wp_salt() wp_sanitize_redirect() wp_save_image() wp_save_image_file() " + |
| 1433 |
|
| 1434 |
"wp_save_nav_menu_items() wp_save_post_revision() wp_schedule_event() wp_schedule_single_event() wp_script_is() wp_set_all_user_settings() " + |
| 1435 |
|
| 1436 |
"wp_set_auth_cookie() wp_set_comment_status() wp_set_current_user() wp_set_internal_encoding() wp_set_lang_dir() wp_set_link_cats() " + |
| 1437 |
|
| 1438 |
"wp_set_object_terms() wp_set_password() wp_set_post_categories() wp_set_post_cats() wp_set_post_lock() wp_set_post_tags() " + |
| 1439 |
|
| 1440 |
"wp_set_post_terms() wp_set_sidebars_widgets() wp_set_wpdb_vars() wp_setcookie() wp_setoptions() wp_setup_nav_menu_item() " + |
| 1441 |
|
| 1442 |
"wp_shake_js() wp_shortlink_header() wp_shortlink_wp_head() wp_shrink_dimensions() wp_sidebar_description() wp_signon() " + |
| 1443 |
|
| 1444 |
"wp_simplepie_file() wp_spam_comment() wp_specialchars() wp_specialchars_decode() wp_sprintf() wp_sprintf_l() " + |
| 1445 |
|
| 1446 |
"wp_ssl_constants() wp_start_object_cache() wp_stream_image() wp_strip_all_tags() wp_style_is() wp_style_loader_src() " + |
| 1447 |
|
| 1448 |
"wp_suggestcategories() wp_tag_cloud() wp_templating_constants() wp_tempnam() wp_terms_checklist() wp_text_diff() " + |
| 1449 |
|
| 1450 |
"wp_themes_dir() wp_throttle_comment_flood() wp_tiny_mce() wp_title() wp_title_rss() wp_transition_comment_status() " + |
| 1451 |
|
| 1452 |
"wp_transition_post_status() wp_trash_comment() wp_trash_post() wp_trash_post_comments() wp_trim_excerpt() wp_unique_filename() " + |
| 1453 |
|
| 1454 |
"wp_unique_post_slug() wp_unique_term_slug() wp_unregister_globals() wp_unregister_sidebar_widget() wp_unregister_widget_control() wp_unschedule_event() " + |
| 1455 |
|
| 1456 |
"wp_unspam_comment() wp_untrash_comment() wp_untrash_post() wp_untrash_post_comments() wp_update_attachment_metadata() wp_update_category() " + |
| 1457 |
|
| 1458 |
"wp_update_comment() wp_update_comment_count() wp_update_comment_count_now() wp_update_core() wp_update_link() wp_update_nav_menu_item() " + |
| 1459 |
|
| 1460 |
"wp_update_nav_menu_object() wp_update_plugin() wp_update_plugins() wp_update_post() wp_update_term() wp_update_term_count() " + |
| 1461 |
|
| 1462 |
"wp_update_term_count_now() wp_update_theme() wp_update_themes() wp_update_user() wp_upgrade() wp_upgrader() " + |
| 1463 |
|
| 1464 |
"wp_upgrader_skin() wp_upload_bits() wp_upload_dir() wp_user() wp_user_search() wp_user_settings() " + |
| 1465 |
|
| 1466 |
"wp_validate_auth_cookie() wp_validate_redirect() wp_verify_nonce() wp_version_check() wp_widget() wp_widget_archives() " + |
| 1467 |
|
| 1468 |
"wp_widget_calendar() wp_widget_categories() wp_widget_control() wp_widget_description() wp_widget_factory() wp_widget_links() " + |
| 1469 |
|
| 1470 |
"wp_widget_meta() wp_widget_pages() wp_widget_recent_comments() wp_widget_recent_posts() wp_widget_rss() wp_widget_rss_form() " + |
| 1471 |
|
| 1472 |
"wp_widget_rss_output() wp_widget_rss_process() wp_widget_search() wp_widget_tag_cloud() wp_widget_text() wp_widgets_init() " + |
| 1473 |
|
| 1474 |
"wp_write_post() wp_xmlrpc_server() wpautop() wpdb() wpfileerror() wpmu_activate_signup() " + |
| 1475 |
|
| 1476 |
"wpmu_activate_stylesheet() wpmu_admin_do_redirect() wpmu_admin_redirect_add_updated_param() wpmu_checkavailablespace() wpmu_create_blog() wpmu_create_user() " + |
| 1477 |
|
| 1478 |
"wpmu_current_site() wpmu_delete_blog() wpmu_delete_user() wpmu_get_blog_allowedthemes() wpmu_log_new_registrations() wpmu_menu() " + |
| 1479 |
|
| 1480 |
"wpmu_signup_blog() wpmu_signup_blog_notification() wpmu_signup_stylesheet() wpmu_signup_user() wpmu_signup_user_notification() wpmu_update_blogs_date() " + |
| 1481 |
|
| 1482 |
"wpmu_validate_blog_signup() wpmu_validate_user_signup() wpmu_welcome_notification() wpmu_welcome_user_notification() wpqueueerror() wpsetasthumbnail() " + |
| 1483 |
|
| 1484 |
"wptexturize() wrap() wraptext() write_post() writeembed() writeflash() " + |
| 1485 |
|
| 1486 |
"writequicktime() writerealmedia() writeshockwave() writewindowsmedia() wxr_cat_name() wxr_category_description() " + |
| 1487 |
|
| 1488 |
"wxr_cdata() wxr_missing_parents() wxr_post_taxonomy() wxr_site_url() wxr_tag_description() wxr_tag_name() " + |
| 1489 |
|
| 1490 |
"wxr_term_description() wxr_term_name() xfn_check() xml_encoding() xml_escape() xmlrpc_getpostcategory() " + |
| 1491 |
|
| 1492 |
"xmlrpc_getposttitle() xmlrpc_removepostdata() zeroise() zip() " + |
| 1493 |
|
| 1494 |
"PHPfunctionsusedonthesite abs() addcslashes() addslashes() array_change_key_case() " + |
| 1495 |
|
| 1496 |
"array_diff() array_fill() array_filter() array_flip() array_intersect() array_key_exists() " + |
| 1497 |
|
| 1498 |
"array_keys() array_map() array_merge() array_merge_recursive() array_pop() array_push() " + |
| 1499 |
|
| 1500 |
"array_rand() array_reduce() array_reverse() array_search() array_shift() array_slice() " + |
| 1501 |
|
| 1502 |
"array_splice() array_sum() array_unique() array_unshift() array_values() array_walk() " + |
| 1503 |
|
| 1504 |
"arsort() asort() assert() atan() base_decode() base_encode() " + |
| 1505 |
|
| 1506 |
"base_convert() basename() binhex() call_user_func() call_user_func_array() ceil() " + |
| 1507 |
|
| 1508 |
"chdir() chgrp() chmod() chown() chr() chunk_split() " + |
| 1509 |
|
| 1510 |
"class_exists() clearstatcache() closedir() compact() constant() copy() " + |
| 1511 |
|
| 1512 |
"cos() count() count_chars() create_function() crypt() curl_close() " + |
| 1513 |
|
| 1514 |
"curl_errno() curl_error() curl_exec() curl_getinfo() curl_init() curl_setopt() " + |
| 1515 |
|
| 1516 |
"curl_version() current() date() debug_backtrace() dechex() decoct() " + |
| 1517 |
|
| 1518 |
"define() defined() dirname() dl() each() end() " + |
| 1519 |
|
| 1520 |
"ereg() ereg_replace() eregi() error_log() error_reporting() escapeshellarg() " + |
| 1521 |
|
| 1522 |
"escapeshellcmd() exec() exif_read_data() exp() explode() extension_loaded() " + |
| 1523 |
|
| 1524 |
"extract() fclose() feof() fflush() fgets() file() " + |
| 1525 |
|
| 1526 |
"file_exists() file_get_contents() file_put_contents() fileatime() filegroup() filemtime() " + |
| 1527 |
|
| 1528 |
"fileowner() fileperms() filesize() floatval() floor() flush() " + |
| 1529 |
|
| 1530 |
"fread() fseek() fsockopen() ftell() ftp_chdir() ftp_chmod() " + |
| 1531 |
|
| 1532 |
"ftp_close() ftp_connect() ftp_delete() ftp_fget() ftp_fput() ftp_get_option() " + |
| 1533 |
|
| 1534 |
"ftp_login() ftp_mdtm() ftp_mkdir() ftp_nlist() ftp_pasv() ftp_pwd() " + |
| 1535 |
|
| 1536 |
"ftp_rawlist() ftp_rename() ftp_rmdir() ftp_set_option() ftp_site() ftp_size() " + |
| 1537 |
|
| 1538 |
"ftp_ssl_connect() ftp_systype() func_get_arg() func_get_args() func_num_args() function_exists() " + |
| 1539 |
|
| 1540 |
"fwrite() get_class() get_class_methods() get_defined_constants() get_html_translation_table() get_magic_quotes_gpc() " + |
| 1541 |
|
| 1542 |
"get_magic_quotes_runtime() get_object_vars() get_parent_class() getcwd() getdate() getenv() " + |
| 1543 |
|
| 1544 |
"gethostbyaddr() gethostbyname() gethostbynamel() getimagesize() getmyuid() gettext() " + |
| 1545 |
|
| 1546 |
"gettype() glob() gmdate() gmmktime() gzdeflate() gzencode() " + |
| 1547 |
|
| 1548 |
"gzinflate() gzopen() gzuncompress() header() headers_sent() hexdec() " + |
| 1549 |
|
| 1550 |
"html_entity_decode() htmlentities() htmlspecialchars() http_build_query() iconv_mime_decode() ignore_user_abort() " + |
| 1551 |
|
| 1552 |
"imagealphablending() imageantialias() imagecolorstotal() imagecopy() imagecopyresampled() imagecreatefromgif() " + |
| 1553 |
|
| 1554 |
"imagecreatefromjpeg() imagecreatefrompng() imagecreatefromstring() imagecreatetruecolor() imagedestroy() imagegif() " + |
| 1555 |
|
| 1556 |
"imageistruecolor() imagejpeg() imagepng() imagerotate() imagesavealpha() imagesx() " + |
| 1557 |
|
| 1558 |
"imagesy() imagetruecolortopalette() imagetypes() implode() in_array() ini_get() " + |
| 1559 |
|
| 1560 |
"ini_set() intval() iplong() iptcparse() is_a() is_array() " + |
| 1561 |
|
| 1562 |
"is_bool() is_callable() is_dir() is_executable() is_file() is_float() " + |
| 1563 |
|
| 1564 |
"is_link() is_long() is_null() is_numeric() is_object() is_readable() " + |
| 1565 |
|
| 1566 |
"is_resource() is_scalar() is_string() is_subclass_of() is_uploaded_file() is_writable() " + |
| 1567 |
|
| 1568 |
"key() ksort() link() localtime() log() log() " + |
| 1569 |
|
| 1570 |
"longip() ltrim() mail() max() mb_convert_encoding() mb_detect_encoding() " + |
| 1571 |
|
| 1572 |
"mb_internal_encoding() mb_strlen() mb_strtolower() mb_substr() method_exists() microtime() " + |
| 1573 |
|
| 1574 |
"mime_content_type() min() mkdir() mktime() move_uploaded_file() mt_rand() " + |
| 1575 |
|
| 1576 |
"mysql_affected_rows() mysql_connect() mysql_error() mysql_fetch_field() mysql_fetch_object() mysql_fetch_row() " + |
| 1577 |
|
| 1578 |
"mysql_free_result() mysql_get_server_info() mysql_insert_id() mysql_num_fields() mysql_num_rows() mysql_query() " + |
| 1579 |
|
| 1580 |
"mysql_real_escape_string() mysql_select_db() mysql_unbuffered_query() name() natcasesort() next() " + |
| 1581 |
|
| 1582 |
"nlbr() number_format() ob_end_clean() ob_end_flush() ob_get_clean() ob_get_contents() " + |
| 1583 |
|
| 1584 |
"ob_get_flush() ob_get_length() ob_start() opendir() openssl_error_string() openssl_pkcs_sign() " + |
| 1585 |
|
| 1586 |
"ord() pack() parse_str() parse_url() pathinfo() pclose() " + |
| 1587 |
|
| 1588 |
"php_sapi_name() php_uname() phpversion() popen() posix_getgrgid() posix_getpwuid() " + |
| 1589 |
|
| 1590 |
"pow() preg_match() preg_match_all() preg_quote() preg_replace() preg_replace_callback() " + |
| 1591 |
|
| 1592 |
"preg_split() prev() print_r() pspell_check() pspell_config_create() pspell_new() " + |
| 1593 |
|
| 1594 |
"pspell_new_config() pspell_suggest() quoted_printable_decode() rand() range() rawurldecode() " + |
| 1595 |
|
| 1596 |
"rawurlencode() readfile() realpath() register_shutdown_function() rename() reset() " + |
| 1597 |
|
| 1598 |
"restore_error_handler() rewind() rmdir() round() rtrim() serialize() " + |
| 1599 |
|
| 1600 |
"set_error_handler() set_magic_quotes_runtime() set_time_limit() setcookie() settype() sha() " + |
| 1601 |
|
| 1602 |
"shell_exec() shuffle() simplexml_load_string() sin() sleep() socket_accept() " + |
| 1603 |
|
| 1604 |
"socket_bind() socket_close() socket_connect() socket_create() socket_getsockname() socket_last_error() " + |
| 1605 |
|
| 1606 |
"socket_listen() socket_read() socket_set_option() socket_strerror() socket_write() sort() " + |
| 1607 |
|
| 1608 |
"split() sqrt() srand() sscanf() str_pad() str_repeat() " + |
| 1609 |
|
| 1610 |
"str_replace() str_split() strcasecmp() strcmp() strcspn() stream_context_create() " + |
| 1611 |
|
| 1612 |
"stream_get_contents() stream_get_meta_data() stream_set_blocking() stream_set_timeout() strftime() strip_tags() " + |
| 1613 |
|
| 1614 |
"stripcslashes() stripos() stripslashes() stristr() strnatcasecmp() strncmp() " + |
| 1615 |
|
| 1616 |
"strpos() strrchr() strrev() strrpos() strspn() strstr() " + |
| 1617 |
|
| 1618 |
"strtolower() strtotime() strtoupper() strtr() strval() substr() " + |
| 1619 |
|
| 1620 |
"substr_count() substr_replace() tempnam() time() token_get_all() touch() " + |
| 1621 |
|
| 1622 |
"trigger_error() trim() uasort() ucfirst() ucwords() uksort() " + |
| 1623 |
|
| 1624 |
"umask() uniqid() unlink() unpack() unserialize() urldecode() " + |
| 1625 |
|
| 1626 |
"urlencode() usort() utf_encode() var_export() version_compare() vsprintf() " + |
| 1627 |
|
| 1628 |
"wordwrap() xml_error_string() xml_get_current_byte_index() xml_get_current_column_number() xml_get_current_line_number() xml_get_error_code() " + |
| 1629 |
|
| 1630 |
"xml_parse() xml_parse_into_struct() xml_parser_create() xml_parser_create_ns() xml_parser_free() xml_parser_set_option() " + |
| 1631 |
|
| 1632 |
"xml_set_character_data_handler() xml_set_default_handler() xml_set_element_handler() xml_set_end_namespace_decl_handler() xml_set_object() xml_set_start_namespace_decl_handler() " + |
| 1633 |
|
| 1634 |
"zend_version() ").split(" "); |
| 1635 |
|
| 1636 |
|
| 1637 |
|
| 1638 |
|
| 1639 |
|
| 1640 |
|
| 1641 |
|
| 1642 |
jQuery(document).ready(function($) { |
| 1643 |
|
| 1644 |
|
| 1645 |
|
| 1646 |
|
| 1647 |
|
| 1648 |
|
| 1649 |
|
| 1650 |
//quit if editing this plugin since it will spaz out!! |
| 1651 |
|
| 1652 |
|
| 1653 |
|
| 1654 |
if ( $('input[name=file]').val() == 'ace/ace.php' ){ |
| 1655 |
|
| 1656 |
|
| 1657 |
|
| 1658 |
$('#newcontent').css({'display': 'inline', 'width': '70%'}); //unhide the usual textarea |
| 1659 |
|
| 1660 |
|
| 1661 |
|
| 1662 |
return; |
| 1663 |
|
| 1664 |
|
| 1665 |
|
| 1666 |
} |
| 1667 |
|
| 1668 |
|
| 1669 |
|
| 1670 |
|
| 1671 |
|
| 1672 |
|
| 1673 |
|
| 1674 |
$('#template').prepend("<div style='width:80%;height:500px;margin-right:0!important;' id='fancyeditordiv'></div>"); |
| 1675 |
|
| 1676 |
|
| 1677 |
|
| 1678 |
|
| 1679 |
|
| 1680 |
|
| 1681 |
|
| 1682 |
editor = ace.edit("fancyeditordiv"); |
| 1683 |
|
| 1684 |
|
| 1685 |
|
| 1686 |
|
| 1687 |
|
| 1688 |
|
| 1689 |
|
| 1690 |
editor.setTheme("ace/theme/dawn"); |
| 1691 |
|
| 1692 |
|
| 1693 |
|
| 1694 |
var intialData = $('#newcontent').val() |
| 1695 |
|
| 1696 |
|
| 1697 |
|
| 1698 |
editor.getSession().setValue( intialData ); |
| 1699 |
|
| 1700 |
|
| 1701 |
|
| 1702 |
|
| 1703 |
|
| 1704 |
|
| 1705 |
|
| 1706 |
|
| 1707 |
|
| 1708 |
|
| 1709 |
|
| 1710 |
<?php if($_SERVER['PHP_SELF'] === '/wp-admin/plugin-editor.php'){ ?> |
| 1711 |
|
| 1712 |
|
| 1713 |
|
| 1714 |
var aceedittype = 'plugin'; |
| 1715 |
|
| 1716 |
|
| 1717 |
|
| 1718 |
<?php }elseif($_SERVER['PHP_SELF'] === '/wp-admin/theme-editor.php'){?> |
| 1719 |
|
| 1720 |
|
| 1721 |
|
| 1722 |
var aceedittype = 'theme'; |
| 1723 |
|
| 1724 |
|
| 1725 |
|
| 1726 |
<?php }//end ?> |
| 1727 |
|
| 1728 |
|
| 1729 |
|
| 1730 |
|
| 1731 |
|
| 1732 |
|
| 1733 |
|
| 1734 |
|
| 1735 |
|
| 1736 |
|
| 1737 |
|
| 1738 |
|
| 1739 |
|
| 1740 |
|
| 1741 |
|
| 1742 |
//ajax call to generate a backup of this file we are about to edit |
| 1743 |
|
| 1744 |
|
| 1745 |
|
| 1746 |
var data = { action: 'ace_backup_call', filename: $('input[name=file]').val(), edittype: aceedittype }; |
| 1747 |
|
| 1748 |
|
| 1749 |
|
| 1750 |
jQuery.post(ajaxurl, data, function(response) { |
| 1751 |
|
| 1752 |
|
| 1753 |
|
| 1754 |
//alert('Got this from the server: ' + response); |
| 1755 |
|
| 1756 |
|
| 1757 |
|
| 1758 |
}); |
| 1759 |
|
| 1760 |
|
| 1761 |
|
| 1762 |
|
| 1763 |
|
| 1764 |
|
| 1765 |
|
| 1766 |
|
| 1767 |
|
| 1768 |
|
| 1769 |
|
| 1770 |
var phpMode = require("ace/mode/php").Mode; |
| 1771 |
|
| 1772 |
|
| 1773 |
|
| 1774 |
|
| 1775 |
|
| 1776 |
|
| 1777 |
|
| 1778 |
editor.getSession().setMode(new phpMode()); |
| 1779 |
|
| 1780 |
|
| 1781 |
|
| 1782 |
|
| 1783 |
|
| 1784 |
|
| 1785 |
|
| 1786 |
|
| 1787 |
|
| 1788 |
|
| 1789 |
|
| 1790 |
|
| 1791 |
|
| 1792 |
|
| 1793 |
|
| 1794 |
$('#submit, #publish, #save-post, #post-preview').click(function(event){ |
| 1795 |
|
| 1796 |
|
| 1797 |
|
| 1798 |
var sumink = editor.getSession().getValue(); |
| 1799 |
|
| 1800 |
|
| 1801 |
|
| 1802 |
$('textarea#newcontent').text( sumink ); //.html does some dodgy things with certain php files |
| 1803 |
|
| 1804 |
|
| 1805 |
|
| 1806 |
}) |
| 1807 |
|
| 1808 |
|
| 1809 |
|
| 1810 |
|
| 1811 |
|
| 1812 |
|
| 1813 |
|
| 1814 |
|
| 1815 |
|
| 1816 |
|
| 1817 |
|
| 1818 |
//START WP AUTOCOMPLETE |
| 1819 |
|
| 1820 |
//create the autocomplete dropdown |
| 1821 |
|
| 1822 |
ac = document.createElement('select'); |
| 1823 |
|
| 1824 |
ac.id = 'ac'; |
| 1825 |
|
| 1826 |
ac.namme = 'ac'; |
| 1827 |
|
| 1828 |
ac.style.position='absolute'; |
| 1829 |
|
| 1830 |
ac.style.zIndex=100; |
| 1831 |
|
| 1832 |
ac.style.width='auto'; |
| 1833 |
|
| 1834 |
ac.style.display='none'; |
| 1835 |
|
| 1836 |
ac.style.height='auto'; |
| 1837 |
|
| 1838 |
ac.size=10; |
| 1839 |
|
| 1840 |
editor.container.appendChild(ac); |
| 1841 |
|
| 1842 |
|
| 1843 |
|
| 1844 |
|
| 1845 |
|
| 1846 |
editor.getSession().on('change', function(e) { |
| 1847 |
|
| 1848 |
|
| 1849 |
|
| 1850 |
|
| 1851 |
|
| 1852 |
|
| 1853 |
|
| 1854 |
|
| 1855 |
|
| 1856 |
|
| 1857 |
|
| 1858 |
|
| 1859 |
|
| 1860 |
|
| 1861 |
|
| 1862 |
var range = editor.getSelectionRange(); |
| 1863 |
|
| 1864 |
|
| 1865 |
|
| 1866 |
|
| 1867 |
|
| 1868 |
|
| 1869 |
|
| 1870 |
|
| 1871 |
|
| 1872 |
|
| 1873 |
|
| 1874 |
if (autocompleting){ |
| 1875 |
|
| 1876 |
|
| 1877 |
|
| 1878 |
autocompletelength = autocompletelength + 1; |
| 1879 |
|
| 1880 |
|
| 1881 |
|
| 1882 |
}else{ |
| 1883 |
|
| 1884 |
|
| 1885 |
|
| 1886 |
autocompletelength = 2; |
| 1887 |
|
| 1888 |
|
| 1889 |
|
| 1890 |
} |
| 1891 |
|
| 1892 |
|
| 1893 |
|
| 1894 |
|
| 1895 |
|
| 1896 |
|
| 1897 |
|
| 1898 |
range.start.column = range.start.column - autocompletelength; |
| 1899 |
|
| 1900 |
|
| 1901 |
|
| 1902 |
if (range.start.column < 1) range.start.column = 0; |
| 1903 |
|
| 1904 |
|
| 1905 |
|
| 1906 |
range.end.column = range.end.column + 1; |
| 1907 |
|
| 1908 |
|
| 1909 |
|
| 1910 |
//console.log( '"' + editor.getSession().doc.getTextRange(range) + '"' ); |
| 1911 |
|
| 1912 |
|
| 1913 |
|
| 1914 |
|
| 1915 |
|
| 1916 |
|
| 1917 |
|
| 1918 |
var text = editor.getSession().doc.getTextRange(range); |
| 1919 |
|
| 1920 |
|
| 1921 |
|
| 1922 |
|
| 1923 |
|
| 1924 |
|
| 1925 |
|
| 1926 |
//dont show if no text passed |
| 1927 |
|
| 1928 |
try{ |
| 1929 |
|
| 1930 |
if (text==="") ac.style.display='none'; |
| 1931 |
|
| 1932 |
}catch(e){ } |
| 1933 |
|
| 1934 |
|
| 1935 |
|
| 1936 |
|
| 1937 |
|
| 1938 |
|
| 1939 |
|
| 1940 |
//create the dropdown for autocomplete |
| 1941 |
|
| 1942 |
|
| 1943 |
|
| 1944 |
var sel = editor.getSelection(); |
| 1945 |
|
| 1946 |
|
| 1947 |
|
| 1948 |
|
| 1949 |
|
| 1950 |
|
| 1951 |
|
| 1952 |
var session = editor.getSession(); |
| 1953 |
|
| 1954 |
|
| 1955 |
|
| 1956 |
|
| 1957 |
|
| 1958 |
|
| 1959 |
|
| 1960 |
|
| 1961 |
|
| 1962 |
|
| 1963 |
|
| 1964 |
|
| 1965 |
|
| 1966 |
|
| 1967 |
|
| 1968 |
var lead = sel.getSelectionLead(); |
| 1969 |
|
| 1970 |
|
| 1971 |
|
| 1972 |
|
| 1973 |
|
| 1974 |
|
| 1975 |
|
| 1976 |
var pos = editor.renderer.textToScreenCoordinates(lead.row, lead.column); |
| 1977 |
|
| 1978 |
|
| 1979 |
|
| 1980 |
|
| 1981 |
|
| 1982 |
|
| 1983 |
|
| 1984 |
var ac; |
| 1985 |
|
| 1986 |
|
| 1987 |
|
| 1988 |
if( document.getElementById('ac') ){ |
| 1989 |
|
| 1990 |
|
| 1991 |
|
| 1992 |
ac=document.getElementById('ac'); |
| 1993 |
|
| 1994 |
|
| 1995 |
|
| 1996 |
|
| 1997 |
|
| 1998 |
|
| 1999 |
|
| 2000 |
//editor clicks should hide the autocomplete dropdown |
| 2001 |
|
| 2002 |
editor.container.addEventListener('click',function(e){ |
| 2003 |
|
| 2004 |
ac.style.display='none'; |
| 2005 |
|
| 2006 |
}) |
| 2007 |
|
| 2008 |
|
| 2009 |
|
| 2010 |
|
| 2011 |
|
| 2012 |
|
| 2013 |
|
| 2014 |
//START CANNON COMMANDS |
| 2015 |
|
| 2016 |
|
| 2017 |
|
| 2018 |
var canon = require('pilot/canon') |
| 2019 |
|
| 2020 |
|
| 2021 |
|
| 2022 |
canon.addCommand({ |
| 2023 |
|
| 2024 |
|
| 2025 |
|
| 2026 |
name: "up", |
| 2027 |
|
| 2028 |
|
| 2029 |
|
| 2030 |
bindKey: { |
| 2031 |
|
| 2032 |
|
| 2033 |
|
| 2034 |
win: "Up", |
| 2035 |
|
| 2036 |
mac: "Up", |
| 2037 |
|
| 2038 |
sender: "editor" |
| 2039 |
|
| 2040 |
|
| 2041 |
|
| 2042 |
}, |
| 2043 |
|
| 2044 |
|
| 2045 |
|
| 2046 |
exec: function(env, args, request) { |
| 2047 |
|
| 2048 |
|
| 2049 |
|
| 2050 |
if( document.getElementById('ac').style.display === 'block' ){ |
| 2051 |
|
| 2052 |
|
| 2053 |
|
| 2054 |
var select=document.getElementById('ac'); |
| 2055 |
|
| 2056 |
|
| 2057 |
|
| 2058 |
if( select.selectedIndex==0 ){ |
| 2059 |
|
| 2060 |
|
| 2061 |
|
| 2062 |
select.selectedIndex=select.options.length-1; |
| 2063 |
|
| 2064 |
|
| 2065 |
|
| 2066 |
}else{ |
| 2067 |
|
| 2068 |
|
| 2069 |
|
| 2070 |
select.selectedIndex=select.selectedIndex-1; |
| 2071 |
|
| 2072 |
|
| 2073 |
|
| 2074 |
} |
| 2075 |
|
| 2076 |
|
| 2077 |
|
| 2078 |
}else{ |
| 2079 |
|
| 2080 |
|
| 2081 |
|
| 2082 |
|
| 2083 |
|
| 2084 |
|
| 2085 |
|
| 2086 |
var range = editor.getSelectionRange(); |
| 2087 |
|
| 2088 |
editor.clearSelection(); |
| 2089 |
|
| 2090 |
editor.moveCursorTo(range.end.row -1, range.end.column); |
| 2091 |
|
| 2092 |
|
| 2093 |
|
| 2094 |
} |
| 2095 |
|
| 2096 |
|
| 2097 |
|
| 2098 |
} |
| 2099 |
|
| 2100 |
|
| 2101 |
|
| 2102 |
}); |
| 2103 |
|
| 2104 |
|
| 2105 |
|
| 2106 |
|
| 2107 |
|
| 2108 |
|
| 2109 |
|
| 2110 |
|
| 2111 |
|
| 2112 |
|
| 2113 |
|
| 2114 |
canon.addCommand({ |
| 2115 |
|
| 2116 |
|
| 2117 |
|
| 2118 |
name: "down", |
| 2119 |
|
| 2120 |
|
| 2121 |
|
| 2122 |
bindKey: { |
| 2123 |
|
| 2124 |
|
| 2125 |
|
| 2126 |
win: "Down", |
| 2127 |
|
| 2128 |
mac: "Down", |
| 2129 |
|
| 2130 |
sender: "editor" |
| 2131 |
|
| 2132 |
|
| 2133 |
|
| 2134 |
}, |
| 2135 |
|
| 2136 |
|
| 2137 |
|
| 2138 |
exec: function(env, args, request) { |
| 2139 |
|
| 2140 |
|
| 2141 |
|
| 2142 |
if( document.getElementById('ac').style.display === 'block' ){ |
| 2143 |
|
| 2144 |
|
| 2145 |
|
| 2146 |
var select=document.getElementById('ac'); |
| 2147 |
|
| 2148 |
|
| 2149 |
|
| 2150 |
|
| 2151 |
|
| 2152 |
if( select.selectedIndex==select.options.length-1 ){ |
| 2153 |
|
| 2154 |
|
| 2155 |
|
| 2156 |
select.selectedIndex=0; |
| 2157 |
|
| 2158 |
|
| 2159 |
|
| 2160 |
}else{ |
| 2161 |
|
| 2162 |
select.selectedIndex=select.selectedIndex+1; |
| 2163 |
|
| 2164 |
} |
| 2165 |
|
| 2166 |
|
| 2167 |
|
| 2168 |
}else{ |
| 2169 |
|
| 2170 |
var range = editor.getSelectionRange(); |
| 2171 |
|
| 2172 |
editor.clearSelection(); |
| 2173 |
|
| 2174 |
editor.moveCursorTo(range.end.row +1, range.end.column); |
| 2175 |
|
| 2176 |
} |
| 2177 |
|
| 2178 |
|
| 2179 |
|
| 2180 |
} |
| 2181 |
|
| 2182 |
|
| 2183 |
|
| 2184 |
|
| 2185 |
|
| 2186 |
|
| 2187 |
|
| 2188 |
}); |
| 2189 |
|
| 2190 |
|
| 2191 |
|
| 2192 |
canon.addCommand({ |
| 2193 |
|
| 2194 |
|
| 2195 |
|
| 2196 |
name: "enter", |
| 2197 |
|
| 2198 |
|
| 2199 |
|
| 2200 |
bindKey: { |
| 2201 |
|
| 2202 |
|
| 2203 |
|
| 2204 |
win: "Return", |
| 2205 |
|
| 2206 |
|
| 2207 |
|
| 2208 |
mac: "Return", |
| 2209 |
|
| 2210 |
|
| 2211 |
|
| 2212 |
sender: "editor" |
| 2213 |
|
| 2214 |
|
| 2215 |
|
| 2216 |
}, |
| 2217 |
|
| 2218 |
|
| 2219 |
|
| 2220 |
exec: function(env, args, request) { |
| 2221 |
|
| 2222 |
|
| 2223 |
|
| 2224 |
if( document.getElementById('ac').style.display === 'block' ){ |
| 2225 |
|
| 2226 |
|
| 2227 |
|
| 2228 |
var select=document.getElementById('ac'); |
| 2229 |
|
| 2230 |
|
| 2231 |
|
| 2232 |
var tag=select.options[select.selectedIndex].value; |
| 2233 |
|
| 2234 |
|
| 2235 |
|
| 2236 |
var sel=editor.selection.getRange(); |
| 2237 |
|
| 2238 |
|
| 2239 |
|
| 2240 |
var line=editor.getSession().getLine(sel.start.row); |
| 2241 |
|
| 2242 |
|
| 2243 |
|
| 2244 |
sel.start.column=sel.start.column-(autocompletelength+1); |
| 2245 |
|
| 2246 |
|
| 2247 |
|
| 2248 |
editor.selection.setSelectionRange(sel); |
| 2249 |
|
| 2250 |
|
| 2251 |
|
| 2252 |
editor.insert(tag); |
| 2253 |
|
| 2254 |
|
| 2255 |
|
| 2256 |
|
| 2257 |
|
| 2258 |
|
| 2259 |
|
| 2260 |
autocompleting=false; |
| 2261 |
|
| 2262 |
|
| 2263 |
|
| 2264 |
}else{ |
| 2265 |
|
| 2266 |
|
| 2267 |
|
| 2268 |
editor.insert('\n'); |
| 2269 |
|
| 2270 |
|
| 2271 |
|
| 2272 |
} |
| 2273 |
|
| 2274 |
|
| 2275 |
|
| 2276 |
} |
| 2277 |
|
| 2278 |
|
| 2279 |
|
| 2280 |
}); |
| 2281 |
|
| 2282 |
//END CANNON COMMANDS |
| 2283 |
|
| 2284 |
|
| 2285 |
|
| 2286 |
|
| 2287 |
|
| 2288 |
} //end - create initial autocomplete dropdown and related actions |
| 2289 |
|
| 2290 |
|
| 2291 |
|
| 2292 |
|
| 2293 |
|
| 2294 |
|
| 2295 |
|
| 2296 |
//calulate the container offset |
| 2297 |
|
| 2298 |
|
| 2299 |
|
| 2300 |
var obj=editor.container; |
| 2301 |
|
| 2302 |
|
| 2303 |
|
| 2304 |
|
| 2305 |
|
| 2306 |
|
| 2307 |
|
| 2308 |
var curleft = 0; |
| 2309 |
|
| 2310 |
|
| 2311 |
|
| 2312 |
var curtop = 0; |
| 2313 |
|
| 2314 |
|
| 2315 |
|
| 2316 |
if (obj.offsetParent) { |
| 2317 |
|
| 2318 |
|
| 2319 |
|
| 2320 |
do { |
| 2321 |
|
| 2322 |
|
| 2323 |
|
| 2324 |
curleft += obj.offsetLeft; |
| 2325 |
|
| 2326 |
|
| 2327 |
|
| 2328 |
curtop += obj.offsetTop; |
| 2329 |
|
| 2330 |
|
| 2331 |
|
| 2332 |
} while (obj = obj.offsetParent); |
| 2333 |
|
| 2334 |
|
| 2335 |
|
| 2336 |
} |
| 2337 |
|
| 2338 |
|
| 2339 |
|
| 2340 |
|
| 2341 |
|
| 2342 |
|
| 2343 |
|
| 2344 |
|
| 2345 |
|
| 2346 |
|
| 2347 |
|
| 2348 |
//position autocomplete |
| 2349 |
|
| 2350 |
|
| 2351 |
|
| 2352 |
ac.style.top=pos.pageY - curtop + 20 + "px"; |
| 2353 |
|
| 2354 |
|
| 2355 |
|
| 2356 |
ac.style.left=pos.pageX - curleft + "px"; |
| 2357 |
|
| 2358 |
|
| 2359 |
|
| 2360 |
ac.style.display='block'; |
| 2361 |
|
| 2362 |
|
| 2363 |
|
| 2364 |
ac.style.background='white'; |
| 2365 |
|
| 2366 |
|
| 2367 |
|
| 2368 |
|
| 2369 |
|
| 2370 |
|
| 2371 |
|
| 2372 |
//remove all options, starting a fresh list |
| 2373 |
|
| 2374 |
|
| 2375 |
|
| 2376 |
ac.options.length = 0 |
| 2377 |
|
| 2378 |
|
| 2379 |
|
| 2380 |
|
| 2381 |
|
| 2382 |
|
| 2383 |
|
| 2384 |
//loop through tags and check for a match |
| 2385 |
|
| 2386 |
//console.log(text); |
| 2387 |
|
| 2388 |
var tag; |
| 2389 |
|
| 2390 |
|
| 2391 |
|
| 2392 |
for(i in html_tags){ |
| 2393 |
|
| 2394 |
|
| 2395 |
|
| 2396 |
if(!html_tags.hasOwnProperty(i) ){ |
| 2397 |
|
| 2398 |
|
| 2399 |
|
| 2400 |
continue; |
| 2401 |
|
| 2402 |
|
| 2403 |
|
| 2404 |
} |
| 2405 |
|
| 2406 |
|
| 2407 |
|
| 2408 |
|
| 2409 |
|
| 2410 |
|
| 2411 |
|
| 2412 |
tag=html_tags[i]; |
| 2413 |
|
| 2414 |
|
| 2415 |
|
| 2416 |
|
| 2417 |
|
| 2418 |
|
| 2419 |
|
| 2420 |
if( text ){ |
| 2421 |
|
| 2422 |
|
| 2423 |
|
| 2424 |
if( text!=tag.substr(0,text.length) ){ |
| 2425 |
|
| 2426 |
|
| 2427 |
|
| 2428 |
continue; |
| 2429 |
|
| 2430 |
|
| 2431 |
|
| 2432 |
} |
| 2433 |
|
| 2434 |
|
| 2435 |
|
| 2436 |
} |
| 2437 |
|
| 2438 |
|
| 2439 |
|
| 2440 |
|
| 2441 |
|
| 2442 |
|
| 2443 |
|
| 2444 |
var option = document.createElement('option'); |
| 2445 |
|
| 2446 |
|
| 2447 |
|
| 2448 |
option.text = tag; |
| 2449 |
|
| 2450 |
|
| 2451 |
|
| 2452 |
option.value = tag; |
| 2453 |
|
| 2454 |
|
| 2455 |
|
| 2456 |
|
| 2457 |
|
| 2458 |
|
| 2459 |
|
| 2460 |
try { |
| 2461 |
|
| 2462 |
|
| 2463 |
|
| 2464 |
ac.add(option, null); // standards compliant; doesn't work in IE |
| 2465 |
|
| 2466 |
|
| 2467 |
|
| 2468 |
} |
| 2469 |
|
| 2470 |
|
| 2471 |
|
| 2472 |
catch(ex) { |
| 2473 |
|
| 2474 |
|
| 2475 |
|
| 2476 |
ac.add(option); // IE only |
| 2477 |
|
| 2478 |
|
| 2479 |
|
| 2480 |
} |
| 2481 |
|
| 2482 |
|
| 2483 |
|
| 2484 |
}; |
| 2485 |
|
| 2486 |
|
| 2487 |
|
| 2488 |
//if the return list contains everything then don't display it |
| 2489 |
|
| 2490 |
if (html_tags.length == ac.options.length){ |
| 2491 |
|
| 2492 |
ac.options.length =0; |
| 2493 |
|
| 2494 |
} |
| 2495 |
|
| 2496 |
//console.log(html_tags.length + " = " + ac.options.length); |
| 2497 |
|
| 2498 |
|
| 2499 |
|
| 2500 |
//check for matches |
| 2501 |
|
| 2502 |
|
| 2503 |
|
| 2504 |
if( ac.length==0 ){ |
| 2505 |
|
| 2506 |
|
| 2507 |
|
| 2508 |
ac.style.display='none'; |
| 2509 |
|
| 2510 |
autocompleting=false; |
| 2511 |
|
| 2512 |
|
| 2513 |
|
| 2514 |
}else{ |
| 2515 |
|
| 2516 |
|
| 2517 |
|
| 2518 |
//console.log('match'); |
| 2519 |
|
| 2520 |
ac.selectedIndex=0; |
| 2521 |
|
| 2522 |
autocompleting=true; |
| 2523 |
|
| 2524 |
|
| 2525 |
|
| 2526 |
} |
| 2527 |
|
| 2528 |
|
| 2529 |
|
| 2530 |
|
| 2531 |
|
| 2532 |
|
| 2533 |
|
| 2534 |
}); |
| 2535 |
|
| 2536 |
|
| 2537 |
|
| 2538 |
|
| 2539 |
|
| 2540 |
|
| 2541 |
|
| 2542 |
}); |
| 2543 |
|
| 2544 |
|
| 2545 |
|
| 2546 |
|
| 2547 |
|
| 2548 |
|
| 2549 |
|
| 2550 |
|
| 2551 |
|
| 2552 |
|
| 2553 |
|
| 2554 |
|
| 2555 |
|
| 2556 |
|
| 2557 |
|
| 2558 |
</script> |
| 2559 |
|
| 2560 |
|
| 2561 |
|
| 2562 |
|
| 2563 |
|
| 2564 |
|
| 2565 |
|
| 2566 |
|
| 2567 |
|
| 2568 |
|
| 2569 |
|
| 2570 |
|
| 2571 |
|
| 2572 |
|
| 2573 |
|
| 2574 |
<?php |
| 2575 |
|
| 2576 |
|
| 2577 |
|
| 2578 |
|
| 2579 |
|
| 2580 |
|
| 2581 |
|
| 2582 |
} |
| 2583 |
|
| 2584 |
|
| 2585 |
|
| 2586 |
|
| 2587 |
|
| 2588 |
|
| 2589 |
|
| 2590 |
|
| 2591 |
|
| 2592 |
|
| 2593 |
|
| 2594 |
|
| 2595 |
|
| 2596 |
|
| 2597 |
|
| 2598 |
public static function add_admin_js() |
| 2599 |
|
| 2600 |
|
| 2601 |
|
| 2602 |
|
| 2603 |
|
| 2604 |
|
| 2605 |
|
| 2606 |
{ |
| 2607 |
|
| 2608 |
|
| 2609 |
|
| 2610 |
|
| 2611 |
|
| 2612 |
|
| 2613 |
|
| 2614 |
$plugin_path = get_bloginfo('url').'/wp-content/plugins/' . basename(dirname(__FILE__)) .'/'; |
| 2615 |
|
| 2616 |
|
| 2617 |
|
| 2618 |
|
| 2619 |
|
| 2620 |
|
| 2621 |
|
| 2622 |
wp_enqueue_script('ace', $plugin_path . 'ace-0.2.0/src/ace.js'); |
| 2623 |
|
| 2624 |
|
| 2625 |
|
| 2626 |
|
| 2627 |
|
| 2628 |
|
| 2629 |
|
| 2630 |
wp_enqueue_script('ace-mode', $plugin_path . 'ace-0.2.0/src/mode-php.js'); |
| 2631 |
|
| 2632 |
|
| 2633 |
|
| 2634 |
|
| 2635 |
|
| 2636 |
|
| 2637 |
|
| 2638 |
wp_enqueue_script('ace-theme', $plugin_path . 'ace-0.2.0/src/theme-dawn.js');//monokai is nice |
| 2639 |
|
| 2640 |
|
| 2641 |
|
| 2642 |
|
| 2643 |
|
| 2644 |
|
| 2645 |
|
| 2646 |
|
| 2647 |
|
| 2648 |
|
| 2649 |
|
| 2650 |
|
| 2651 |
|
| 2652 |
|
| 2653 |
|
| 2654 |
} |
| 2655 |
|
| 2656 |
|
| 2657 |
|
| 2658 |
|
| 2659 |
|
| 2660 |
|
| 2661 |
|
| 2662 |
|
| 2663 |
|
| 2664 |
|
| 2665 |
|
| 2666 |
|
| 2667 |
|
| 2668 |
|
| 2669 |
|
| 2670 |
|
| 2671 |
|
| 2672 |
|
| 2673 |
|
| 2674 |
|
| 2675 |
|
| 2676 |
|
| 2677 |
|
| 2678 |
|
| 2679 |
|
| 2680 |
|
| 2681 |
|
| 2682 |
|
| 2683 |
|
| 2684 |
|
| 2685 |
|
| 2686 |
public static function ace_backup_call() { |
| 2687 |
|
| 2688 |
|
| 2689 |
|
| 2690 |
$backup_path = get_bloginfo('url').'/wp-content/plugins/' . basename(dirname(__FILE__)) .'/backups/'; |
| 2691 |
|
| 2692 |
|
| 2693 |
|
| 2694 |
$file_name = $_POST['filename']; |
| 2695 |
|
| 2696 |
|
| 2697 |
|
| 2698 |
$edit_type = $_POST['edittype']; |
| 2699 |
|
| 2700 |
|
| 2701 |
|
| 2702 |
|
| 2703 |
|
| 2704 |
|
| 2705 |
|
| 2706 |
if ($edit_type==='theme'){ |
| 2707 |
|
| 2708 |
|
| 2709 |
|
| 2710 |
$theme_root = get_theme_root(); |
| 2711 |
|
| 2712 |
|
| 2713 |
|
| 2714 |
|
| 2715 |
|
| 2716 |
|
| 2717 |
|
| 2718 |
$short_path = str_replace($theme_root, '', $file_name); |
| 2719 |
|
| 2720 |
|
| 2721 |
|
| 2722 |
$new_file_path_daily = WP_PLUGIN_DIR.'/WPide/backups/themes'.$short_path.'.'.date("Ymd"); |
| 2723 |
|
| 2724 |
|
| 2725 |
|
| 2726 |
$new_file_path_hourly = WP_PLUGIN_DIR.'/WPide/backups/themes'.$short_path.'.'.date("YmdH"); |
| 2727 |
|
| 2728 |
|
| 2729 |
|
| 2730 |
$new_file_info = pathinfo($new_file_path_daily); |
| 2731 |
|
| 2732 |
|
| 2733 |
|
| 2734 |
if (!is_dir($new_file_info['dirname'])) mkdir($new_file_info['dirname'], 0777, true); //make directory if not exist |
| 2735 |
|
| 2736 |
|
| 2737 |
|
| 2738 |
|
| 2739 |
|
| 2740 |
|
| 2741 |
|
| 2742 |
//check for todays backup if non existant then create |
| 2743 |
|
| 2744 |
|
| 2745 |
|
| 2746 |
if (!file_exists($new_file_path_daily)){ |
| 2747 |
|
| 2748 |
|
| 2749 |
|
| 2750 |
copy($file_name, $new_file_path_daily); //make a copy of the file |
| 2751 |
|
| 2752 |
|
| 2753 |
|
| 2754 |
//check for a backup this hour if doesn't exist then create |
| 2755 |
|
| 2756 |
|
| 2757 |
|
| 2758 |
}else if(!file_exists($new_file_path_hourly)){ |
| 2759 |
|
| 2760 |
|
| 2761 |
|
| 2762 |
copy($file_name, $new_file_path_hourly); //make a copy of the file |
| 2763 |
|
| 2764 |
|
| 2765 |
|
| 2766 |
} |
| 2767 |
|
| 2768 |
|
| 2769 |
|
| 2770 |
//do no further backups since one intial backup for today and an hourly one is plenty! |
| 2771 |
|
| 2772 |
|
| 2773 |
|
| 2774 |
|
| 2775 |
|
| 2776 |
|
| 2777 |
|
| 2778 |
}else if ($edit_type==='plugin'){ |
| 2779 |
|
| 2780 |
|
| 2781 |
|
| 2782 |
|
| 2783 |
|
| 2784 |
|
| 2785 |
|
| 2786 |
$plugin_root = WP_PLUGIN_DIR; |
| 2787 |
|
| 2788 |
|
| 2789 |
|
| 2790 |
$short_path = str_replace($plugin_root, '', $file_name); |
| 2791 |
|
| 2792 |
|
| 2793 |
|
| 2794 |
$new_file_path_daily = WP_PLUGIN_DIR.'/WPide/backups/plugins/'.$short_path.'.'.date("Ymd"); |
| 2795 |
|
| 2796 |
|
| 2797 |
|
| 2798 |
$new_file_path_hourly = WP_PLUGIN_DIR.'/WPide/backups/plugins/'.$short_path.'.'.date("YmdH"); |
| 2799 |
|
| 2800 |
|
| 2801 |
|
| 2802 |
$new_file_info = pathinfo($new_file_path_daily); |
| 2803 |
|
| 2804 |
|
| 2805 |
|
| 2806 |
if (!is_dir($new_file_info['dirname'])) mkdir($new_file_info['dirname'], 0777, true); //make directory if not exist |
| 2807 |
|
| 2808 |
|
| 2809 |
|
| 2810 |
|
| 2811 |
|
| 2812 |
|
| 2813 |
|
| 2814 |
//check for todays backup if non existant then create |
| 2815 |
|
| 2816 |
|
| 2817 |
|
| 2818 |
if (!file_exists($new_file_path_daily)){ |
| 2819 |
|
| 2820 |
|
| 2821 |
|
| 2822 |
copy($plugin_root.'/'.$file_name, $new_file_path_daily); //make a copy of the file |
| 2823 |
|
| 2824 |
|
| 2825 |
|
| 2826 |
//check for a backup this hour if doesn't exist then create |
| 2827 |
|
| 2828 |
|
| 2829 |
|
| 2830 |
}else if(!file_exists($new_file_path_hourly)){ |
| 2831 |
|
| 2832 |
|
| 2833 |
|
| 2834 |
copy($plugin_root.'/'.$file_name, $new_file_path_hourly); //make a copy of the file |
| 2835 |
|
| 2836 |
|
| 2837 |
|
| 2838 |
} |
| 2839 |
|
| 2840 |
|
| 2841 |
|
| 2842 |
//do no further backups since one intial backup for today and an hourly one is plenty! |
| 2843 |
|
| 2844 |
|
| 2845 |
|
| 2846 |
|
| 2847 |
|
| 2848 |
|
| 2849 |
|
| 2850 |
} |
| 2851 |
|
| 2852 |
|
| 2853 |
|
| 2854 |
|
| 2855 |
|
| 2856 |
|
| 2857 |
|
| 2858 |
//echo "final debug info : " . WP_PLUGIN_DIR.'/WPide/backups/'.$short_path.'.backup'; |
| 2859 |
|
| 2860 |
|
| 2861 |
|
| 2862 |
die(); // this is required to return a proper result |
| 2863 |
|
| 2864 |
|
| 2865 |
|
| 2866 |
|
| 2867 |
|
| 2868 |
|
| 2869 |
|
| 2870 |
} |
| 2871 |
|
| 2872 |
|
| 2873 |
|
| 2874 |
|
| 2875 |
|
| 2876 |
|
| 2877 |
|
| 2878 |
} |
| 2879 |
|
| 2880 |
|
| 2881 |
|
| 2882 |
|
| 2883 |
|
| 2884 |
|
| 2885 |
|
| 2886 |
|
| 2887 |
|
| 2888 |
|
| 2889 |
|
| 2890 |
|
| 2891 |
|
| 2892 |
|
| 2893 |
|
| 2894 |
//only include this plugin if on theme editor or plugin editor |
| 2895 |
|
| 2896 |
|
| 2897 |
|
| 2898 |
|
| 2899 |
|
| 2900 |
|
| 2901 |
|
| 2902 |
if ( $_SERVER['PHP_SELF'] === '/wp-admin/plugin-editor.php' || |
| 2903 |
|
| 2904 |
|
| 2905 |
|
| 2906 |
$_SERVER['PHP_SELF'] === '/wp-admin/theme-editor.php' || |
| 2907 |
|
| 2908 |
|
| 2909 |
|
| 2910 |
$_SERVER['PHP_SELF'] === '/wp-admin/admin-ajax.php' ){ |
| 2911 |
|
| 2912 |
|
| 2913 |
|
| 2914 |
|
| 2915 |
|
| 2916 |
|
| 2917 |
|
| 2918 |
add_action("init", create_function('', 'new WPide();')); |
| 2919 |
|
| 2920 |
|
| 2921 |
|
| 2922 |
|
| 2923 |
|
| 2924 |
|
| 2925 |
|
| 2926 |
} |
| 2927 |
|
| 2928 |
|
| 2929 |
|
| 2930 |
?> |