Changeset 6438 for trunk/src/includes/core/options.php
- Timestamp:
- 05/27/2017 05:04:31 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/core/options.php
r6419 r6438 22 22 function bbp_get_default_options() { 23 23 24 // Default options24 // Filter & return 25 25 return apply_filters( 'bbp_get_default_options', array( 26 26 … … 216 216 */ 217 217 function bbp_is_favorites_active( $default = 1 ) { 218 219 // Filter & return 218 220 return (bool) apply_filters( 'bbp_is_favorites_active', (bool) get_option( '_bbp_enable_favorites', $default ) ); 219 221 } … … 229 231 */ 230 232 function bbp_is_subscriptions_active( $default = 1 ) { 233 234 // Filter & return 231 235 return (bool) apply_filters( 'bbp_is_subscriptions_active', (bool) get_option( '_bbp_enable_subscriptions', $default ) ); 232 236 } … … 242 246 */ 243 247 function bbp_is_engagements_active( $default = 1 ) { 248 249 // Filter & return 244 250 return (bool) apply_filters( 'bbp_is_engagements_active', (bool) get_option( '_bbp_enable_engagements', $default ) ); 245 251 } … … 255 261 */ 256 262 function bbp_allow_topic_tags( $default = 1 ) { 263 264 // Filter & return 257 265 return (bool) apply_filters( 'bbp_allow_topic_tags', (bool) get_option( '_bbp_allow_topic_tags', $default ) ); 258 266 } … … 269 277 */ 270 278 function bbp_allow_forum_mods( $default = 1 ) { 279 280 // Filter & return 271 281 return (bool) apply_filters( 'bbp_allow_forum_mods', (bool) get_option( '_bbp_allow_forum_mods', $default ) ); 272 282 } … … 282 292 */ 283 293 function bbp_allow_search( $default = 1 ) { 294 295 // Filter & return 284 296 return (bool) apply_filters( 'bbp_allow_search', (bool) get_option( '_bbp_allow_search', $default ) ); 285 297 } … … 295 307 */ 296 308 function bbp_allow_threaded_replies( $default = 0 ) { 309 310 // Filter & return 297 311 return (bool) apply_filters( '_bbp_allow_threaded_replies', (bool) get_option( '_bbp_allow_threaded_replies', $default ) ); 298 312 } … … 310 324 */ 311 325 function bbp_thread_replies_depth( $default = 2 ) { 326 327 // Filter & return 312 328 return (int) apply_filters( 'bbp_thread_replies_depth', (int) get_option( '_bbp_thread_replies_depth', $default ) ); 313 329 } … … 323 339 */ 324 340 function bbp_allow_revisions( $default = 1 ) { 341 342 // Filter & return 325 343 return (bool) apply_filters( 'bbp_allow_revisions', (bool) get_option( '_bbp_allow_revisions', $default ) ); 326 344 } … … 336 354 */ 337 355 function bbp_allow_anonymous( $default = 0 ) { 356 357 // Filter & return 338 358 return apply_filters( 'bbp_allow_anonymous', (bool) get_option( '_bbp_allow_anonymous', $default ) ); 339 359 } … … 349 369 */ 350 370 function bbp_allow_global_access( $default = 1 ) { 371 372 // Filter & return 351 373 return (bool) apply_filters( 'bbp_allow_global_access', (bool) get_option( '_bbp_allow_global_access', $default ) ); 352 374 } … … 362 384 */ 363 385 function bbp_get_default_role( $default = 'bbp_participant' ) { 386 387 // Filter & return 364 388 return apply_filters( 'bbp_get_default_role', get_option( '_bbp_default_role', $default ) ); 365 389 } … … 375 399 */ 376 400 function bbp_use_wp_editor( $default = 1 ) { 401 402 // Filter & return 377 403 return (bool) apply_filters( 'bbp_use_wp_editor', (bool) get_option( '_bbp_use_wp_editor', $default ) ); 378 404 } … … 388 414 */ 389 415 function bbp_use_autoembed( $default = 1 ) { 416 417 // Filter & return 390 418 return (bool) apply_filters( 'bbp_use_autoembed', (bool) get_option( '_bbp_use_autoembed', $default ) ); 391 419 } … … 401 429 */ 402 430 function bbp_get_theme_package_id( $default = 'default' ) { 431 432 // Filter & return 403 433 return apply_filters( 'bbp_get_theme_package_id', get_option( '_bbp_theme_package_id', $default ) ); 404 434 } … … 424 454 */ 425 455 function bbp_get_title_max_length( $default = 80 ) { 456 457 // Filter & return 426 458 return (int) apply_filters( 'bbp_get_title_max_length', (int) get_option( '_bbp_title_max_length', $default ) ); 427 459 } … … 447 479 */ 448 480 function bbp_get_group_forums_root_id( $default = 0 ) { 481 482 // Filter & return 449 483 return (int) apply_filters( 'bbp_get_group_forums_root_id', (int) get_option( '_bbp_group_forums_root_id', $default ) ); 450 484 } … … 460 494 */ 461 495 function bbp_is_group_forums_active( $default = 1 ) { 496 497 // Filter & return 462 498 return (bool) apply_filters( 'bbp_is_group_forums_active', (bool) get_option( '_bbp_enable_group_forums', $default ) ); 463 499 } … … 473 509 */ 474 510 function bbp_is_akismet_active( $default = 1 ) { 511 512 // Filter & return 475 513 return (bool) apply_filters( 'bbp_is_akismet_active', (bool) get_option( '_bbp_enable_akismet', $default ) ); 476 514 } … … 521 559 */ 522 560 function bbp_get_root_slug( $default = 'forums' ) { 561 562 // Filter & return 523 563 return apply_filters( 'bbp_get_root_slug', get_option( '_bbp_root_slug', $default ) ); 524 564 } … … 532 572 */ 533 573 function bbp_include_root_slug( $default = 1 ) { 574 575 // Filter & return 534 576 return (bool) apply_filters( 'bbp_include_root_slug', (bool) get_option( '_bbp_include_root', $default ) ); 535 577 } … … 543 585 */ 544 586 function bbp_show_on_root( $default = 'forums' ) { 587 588 // Filter & return 545 589 return apply_filters( 'bbp_show_on_root', get_option( '_bbp_show_on_root', $default ) ); 546 590 } … … 560 604 } 561 605 606 // Filter & return 562 607 return apply_filters( 'bbp_maybe_get_root_slug', $retval ); 563 608 } … … 571 616 */ 572 617 function bbp_get_forum_slug( $default = 'forum' ) { 618 619 // Filter & return 573 620 return apply_filters( 'bbp_get_forum_slug', bbp_maybe_get_root_slug() . get_option( '_bbp_forum_slug', $default ) ); 574 621 } … … 582 629 */ 583 630 function bbp_get_topic_archive_slug( $default = 'topics' ) { 631 632 // Filter & return 584 633 return apply_filters( 'bbp_get_topic_archive_slug', get_option( '_bbp_topic_archive_slug', $default ) ); 585 634 } … … 593 642 */ 594 643 function bbp_get_reply_archive_slug( $default = 'replies' ) { 644 645 // Filter & return 595 646 return apply_filters( 'bbp_get_reply_archive_slug', get_option( '_bbp_reply_archive_slug', $default ) ); 596 647 } … … 604 655 */ 605 656 function bbp_get_topic_slug( $default = 'topic' ) { 657 658 // Filter & return 606 659 return apply_filters( 'bbp_get_topic_slug', bbp_maybe_get_root_slug() . get_option( '_bbp_topic_slug', $default ) ); 607 660 } … … 615 668 */ 616 669 function bbp_get_topic_tag_tax_slug( $default = 'topic-tag' ) { 670 671 // Filter & return 617 672 return apply_filters( 'bbp_get_topic_tag_tax_slug', bbp_maybe_get_root_slug() . get_option( '_bbp_topic_tag_slug', $default ) ); 618 673 } … … 626 681 */ 627 682 function bbp_get_reply_slug( $default = 'reply' ) { 683 684 // Filter & return 628 685 return apply_filters( 'bbp_get_reply_slug', bbp_maybe_get_root_slug() . get_option( '_bbp_reply_slug', $default ) ); 629 686 } … … 637 694 */ 638 695 function bbp_get_user_slug( $default = 'users' ) { 696 697 // Filter & return 639 698 return apply_filters( 'bbp_get_user_slug', bbp_maybe_get_root_slug() . get_option( '_bbp_user_slug', $default ) ); 640 699 } … … 648 707 */ 649 708 function bbp_get_user_favorites_slug( $default = 'favorites' ) { 709 710 // Filter & return 650 711 return apply_filters( 'bbp_get_user_favorites_slug', get_option( '_bbp_user_favs_slug', $default ) ); 651 712 } … … 659 720 */ 660 721 function bbp_get_user_subscriptions_slug( $default = 'subscriptions' ) { 722 723 // Filter & return 661 724 return apply_filters( 'bbp_get_user_subscriptions_slug', get_option( '_bbp_user_subs_slug', $default ) ); 662 725 } … … 670 733 */ 671 734 function bbp_get_user_engagements_slug( $default = 'engagements' ) { 735 736 // Filter & return 672 737 return apply_filters( 'bbp_get_user_engagements_slug', get_option( '_bbp_user_engagements_slug', $default ) ); 673 738 } … … 681 746 */ 682 747 function bbp_get_view_slug( $default = 'view' ) { 748 749 // Filter & return 683 750 return apply_filters( 'bbp_get_view_slug', bbp_maybe_get_root_slug() . get_option( '_bbp_view_slug', $default ) ); 684 751 } … … 692 759 */ 693 760 function bbp_get_search_slug( $default = 'search' ) { 761 762 // Filter & return 694 763 return apply_filters( 'bbp_get_search_slug', bbp_maybe_get_root_slug() . get_option( '_bbp_search_slug', $default ) ); 695 764 } … … 707 776 */ 708 777 function bbp_get_config_location( $default = '' ) { 778 779 // Filter & return 709 780 return apply_filters( 'bbp_get_config_location', get_option( 'bb-config-location', $default ) ); 710 781 }
Note: See TracChangeset
for help on using the changeset viewer.