77628cf8bf first comm пре 3 година RE.js 77628cf8bf first comm пре 3 година RO.js 77628cf8bf first comm пре 3 година RS.js 77628cf8bf first comm пре 3 година RU.js 77628cf8bf first comm пре 3 година RW.js 77628cf8bf first comm пре 3 година SA.js 77628cf8bf first comm пре 3 година SB.js 77628cf8bf first comm пре 3 година SC.js 77628cf8bf first comm пре 3 година SD.js 77628cf8bf first comm пре 3 година SE.js 77628cf8bf first comm пре 3 година SG.js 77628cf8bf first comm пре 3 година SH.js 77628cf8bf first comm пре 3 година SI.js 77628cf8bf first comm пре 3 година SK.js 77628cf8bf first comm пре 3 година SL.js 77628cf8bf first comm пре 3 година SM.js 77628cf8bf first comm пре 3 година SN.js 77628cf8bf first comm пре 3 година SO.js 77628cf8bf first comm пре 3 година SR.js 77628cf8bf first comm пре 3 година ST.js 77628cf8bf first comm пре 3 година SV.js 77628cf8bf first comm пре 3 година SY.js 77628cf8bf first comm пре 3 година SZ.js 77628cf8bf first comm пре 3 година TC.js 77628cf8bf first comm пре 3 година TD.js 77628cf8bf first comm пре 3 година TG.js 77628cf8bf first comm пре 3 година TH.js 77628cf8bf first comm пре 3 година TJ.js 77628cf8bf first comm пре 3 година TK.js 77628cf8bf first comm пре 3 година TL.js 77628cf8bf first comm пре 3 година TM.js 77628cf8bf first comm пре 3 година TN.js 77628cf8bf first comm пре 3 година TO.js 77628cf8bf first comm пре 3 година TR.js 77628cf8bf first comm пре 3 година TT.js 77628cf8bf first comm пре 3 година TV.js 77628cf8bf first comm пре 3 година TW.js 77628cf8bf first comm пре 3 година TZ.js 77628cf8bf first comm пре 3 година UA.js 77628cf8bf first comm пре 3 година UG.js 77628cf8bf first comm пре 3 година US.js 77628cf8bf first comm пре 3 година UY.js 77628cf8bf first comm пре 3 година UZ.js 77628cf8bf first comm пре 3 година VA.js 77628cf8bf first comm пре 3 година VC.js 77628cf8bf first comm пре 3 година VE.js 77628cf8bf first comm пре 3 година VG.js 77628cf8bf first comm пре 3 година VI.js 77628cf8bf first comm пре 3 година VN.js 77628cf8bf first comm пре 3 година VU.js 77628cf8bf first comm пре 3 година WF.js 77628cf8bf first comm пре 3 година WS.js 77628cf8bf first comm пре 3 година YE.js 77628cf8bf first comm пре 3 година YT.js 77628cf8bf first comm пре 3 година ZA.js 77628cf8bf first comm пре 3 година ZM.js 77628cf8bf first comm пре 3 година ZW.js 77628cf8bf first comm пре 3 година alt-af.js 77628cf8bf first comm пре 3 година alt-an.js 77628cf8bf first comm пре 3 година alt-as.js 77628cf8bf first comm пре 3 година alt-eu.js 77628cf8bf first comm пре 3 година alt-na.js 77628cf8bf first comm пре 3 година alt-oc.js 77628cf8bf first comm пре 3 година alt-sa.js 77628cf8bf first comm пре 3 година alt-ww.js 77628cf8bf first comm пре 3 година tum/whitesports - Gogs: Simplico Git Service

Нет описания

class-wp-customize-new-menu-control.php 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. /**
  3. * Customize API: WP_Customize_New_Menu_Control class
  4. *
  5. * @package WordPress
  6. * @subpackage Customize
  7. * @since 4.4.0
  8. * @deprecated 4.9.0 This file is no longer used as of the menu creation UX introduced in #40104.
  9. */
  10. _deprecated_file( basename( __FILE__ ), '4.9.0' );
  11. /**
  12. * Customize control class for new menus.
  13. *
  14. * @since 4.3.0
  15. * @deprecated 4.9.0 This class is no longer used as of the menu creation UX introduced in #40104.
  16. *
  17. * @see WP_Customize_Control
  18. */
  19. class WP_Customize_New_Menu_Control extends WP_Customize_Control {
  20. /**
  21. * Control type.
  22. *
  23. * @since 4.3.0
  24. * @var string
  25. */
  26. public $type = 'new_menu';
  27. /**
  28. * Constructor.
  29. *
  30. * @since 4.9.0
  31. * @deprecated 4.9.0
  32. *
  33. * @see WP_Customize_Control::__construct()
  34. *
  35. * @param WP_Customize_Manager $manager Customizer bootstrap instance.
  36. * @param string $id The control ID.
  37. * @param array $args Optional. Arguments to override class property defaults.
  38. * See WP_Customize_Control::__construct() for information
  39. * on accepted arguments. Default empty array.
  40. */
  41. public function __construct( WP_Customize_Manager $manager, $id, array $args = array() ) {
  42. _deprecated_function( __METHOD__, '4.9.0' );
  43. parent::__construct( $manager, $id, $args );
  44. }
  45. /**
  46. * Render the control's content.
  47. *
  48. * @since 4.3.0
  49. * @deprecated 4.9.0
  50. */
  51. public function render_content() {
  52. _deprecated_function( __METHOD__, '4.9.0' );
  53. ?>
  54. <button type="button" class="button button-primary" id="create-new-menu-submit"><?php _e( 'Create Menu' ); ?></button>
  55. <span class="spinner"></span>
  56. <?php
  57. }
  58. }