- Timestamp:
- 09/10/2015 01:20:58 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-filesystem-ftpsockets.php
r33648 r33984 17 17 class WP_Filesystem_ftpsockets extends WP_Filesystem_Base { 18 18 /** 19 * @access public 19 20 * @var ftp 20 21 */ … … 22 23 23 24 /** 25 * @access public 24 26 * 25 27 * @param array $opt … … 58 60 59 61 /** 62 * @access public 60 63 * 61 64 * @return bool … … 89 92 90 93 /** 94 * @access public 95 * 91 96 * @param string $file 92 97 * @return false|string … … 124 129 return $contents; 125 130 } 126 /** 131 132 /** 133 * @access public 134 * 127 135 * @param string $file 128 136 * @return array … … 133 141 134 142 /** 143 * @access public 144 * 135 145 * @param string $file 136 146 * @param string $contents … … 173 183 174 184 /** 185 * @access public 175 186 * 176 187 * @return string … … 184 195 185 196 /** 197 * @access public 186 198 * 187 199 * @param string $file … … 193 205 194 206 /** 207 * @access public 208 * 195 209 * @param string $file 196 210 * @param int|bool $mode … … 220 234 221 235 /** 236 * @access public 237 * 222 238 * @param string $file 223 239 * @return string … … 227 243 return $dir[$file]['owner']; 228 244 } 229 /** 245 246 /** 247 * @access public 248 * 230 249 * @param string $file 231 250 * @return string … … 235 254 return $dir[$file]['permsn']; 236 255 } 237 /** 256 257 /** 258 * @access public 259 * 238 260 * @param string $file 239 261 * @return string … … 243 265 return $dir[$file]['group']; 244 266 } 245 /** 267 268 /** 269 * @access public 270 * 246 271 * @param string $source 247 272 * @param string $destination … … 260 285 return $this->put_contents($destination, $content, $mode); 261 286 } 262 /** 287 288 /** 289 * @access public 290 * 263 291 * @param string $source 264 292 * @param string $destination … … 269 297 return $this->ftp->rename($source, $destination); 270 298 } 271 /** 299 300 /** 301 * @access public 302 * 272 303 * @param string $file 273 304 * @param bool $recursive … … 287 318 288 319 /** 320 * @access public 321 * 289 322 * @param string $file 290 323 * @return bool … … 302 335 303 336 /** 337 * @access public 338 * 304 339 * @param string $file 305 340 * @return bool … … 314 349 315 350 /** 351 * @access public 352 * 316 353 * @param string $path 317 354 * @return bool … … 327 364 328 365 /** 366 * @access public 367 * 329 368 * @param string $file 330 369 * @return bool … … 335 374 336 375 /** 376 * @access public 377 * 337 378 * @param string $file 338 379 * @return bool … … 343 384 344 385 /** 386 * @access public 387 * 345 388 * @param string $file 346 389 * @return bool … … 351 394 352 395 /** 396 * @access public 397 * 353 398 * @param string $file 354 399 * @return int … … 365 410 return $this->ftp->filesize($file); 366 411 } 367 /** 412 413 /** 414 * @access public 415 * 368 416 * @param string $file 369 417 * @param int $time … … 376 424 377 425 /** 426 * @access public 427 * 378 428 * @param string $path 379 429 * @param mixed $chmod … … 396 446 397 447 /** 448 * @access public 449 * 398 450 * @param string $path 399 451 * @param bool $recursive … … 404 456 405 457 /** 458 * @access public 459 * 406 460 * @param string $path 407 461 * @param bool $include_hidden
Note: See TracChangeset
for help on using the changeset viewer.