Changeset 29148 for trunk/src/wp-admin/includes/class-wp-list-table.php
- Timestamp:
- 07/13/2014 11:54:15 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table.php
r29137 r29148 97 97 98 98 /** 99 * Make private properties readable for backwards compatibility 99 * Make private properties readable for backwards compatibility. 100 100 * 101 101 * @since 4.0.0 102 * @param string $name 103 * @return mixed 102 * @access publc 103 * 104 * @param string $name Property to get. 105 * @return mixed Property. 104 106 */ 105 107 public function __get( $name ) { … … 108 110 109 111 /** 110 * Make private properties setable for backwards compatibility 112 * Make private properties setable for backwards compatibility. 111 113 * 112 114 * @since 4.0.0 113 * @param string $name 114 * @param string $value 115 * @return mixed 115 * @access public 116 * 117 * @param string $name Propert to set. 118 * @param mixed $value Property value. 119 * @return mixed Newly-set property. 116 120 */ 117 121 public function __set( $name, $value ) { … … 120 124 121 125 /** 122 * Make private properties checkable for backwards compatibility 126 * Make private properties checkable for backwards compatibility. 123 127 * 124 128 * @since 4.0.0 125 * @param string $name 126 * @return mixed 129 * @access public 130 * 131 * @param string $name Property to check if set. 132 * @return bool Whether the property is set. 127 133 */ 128 134 public function __isset( $name ) { … … 131 137 132 138 /** 133 * Make private properties unsetable for backwards compatibility 139 * Make private properties unsetable for backwards compatibility. 134 140 * 135 141 * @since 4.0.0 136 * @param string $name 137 * @return mixed 142 * @access public 143 * 144 * @param string $name Property to unset. 138 145 */ 139 146 public function __unset( $name ) { … … 142 149 143 150 /** 144 * Make private/protected methods readable for backwards compatibility 151 * Make private/protected methods readable for backwards compatibility. 145 152 * 146 153 * @since 4.0.0 147 * @param string $name 148 * @param array $arguments 149 * @return mixed 154 * @access public 155 * 156 * @param callable $name Method to call. 157 * @param array $arguments Arguments to pass when calling. 158 * @return mixed|bool Return value of the callback, false otherwise. 150 159 */ 151 160 public function __call( $name, $arguments ) {
Note: See TracChangeset
for help on using the changeset viewer.