Changeset 29149 for trunk/src/wp-admin/custom-background.php
- Timestamp:
- 07/13/2014 11:57:03 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/custom-background.php
r28524 r29149 60 60 61 61 /** 62 * Make private properties readable for backwards compatibility 62 * Make private properties readable for backwards compatibility. 63 63 * 64 64 * @since 4.0.0 65 * @param string $name 66 * @return mixed 65 * @access public 66 * 67 * @param string $name Property name. 68 * @return mixed Property. 67 69 */ 68 70 public function __get( $name ) { … … 71 73 72 74 /** 73 * Make private properties setable for backwards compatibility 75 * Make private properties setable for backwards compatibility. 74 76 * 75 77 * @since 4.0.0 76 * @param string $name 77 * @param string $value 78 * @return mixed 78 * @access public 79 * 80 * @param string $name Property to set. 81 * @param mixed $value Property value. 82 * @return mixed Newly-set property. 79 83 */ 80 84 public function __set( $name, $value ) { … … 83 87 84 88 /** 85 * Make private properties checkable for backwards compatibility 89 * Make private properties checkable for backwards compatibility. 86 90 * 87 91 * @since 4.0.0 88 * @param string $name 89 * @return mixed 92 * @access public 93 * 94 * @param string $name Property to check if set. 95 * @return bool Whether the property is set. 90 96 */ 91 97 public function __isset( $name ) { … … 97 103 * 98 104 * @since 4.0.0 99 * @param string $name 100 * @return mixed 105 * @access public 106 * 107 * @param string $name Property to unset. 101 108 */ 102 109 public function __unset( $name ) {
Note: See TracChangeset
for help on using the changeset viewer.