- Timestamp:
- 07/27/2017 12:39:34 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-filesystem-base.php
r37985 r41161 16 16 * Whether to display debug data for the connection. 17 17 * 18 * @access public19 18 * @since 2.5.0 20 19 * @var bool … … 25 24 * Cached list of local filepaths to mapped remote filepaths. 26 25 * 27 * @access public28 26 * @since 2.7.0 29 27 * @var array … … 34 32 * The Access method of the current connection, Set automatically. 35 33 * 36 * @access public37 34 * @since 2.5.0 38 35 * @var string … … 41 38 42 39 /** 43 * @access public44 40 * @var WP_Error 45 41 */ … … 47 43 48 44 /** 49 * @access public50 45 */ 51 46 public $options = array(); … … 54 49 * Return the path on the remote filesystem of ABSPATH. 55 50 * 56 * @access public57 51 * @since 2.7.0 58 52 * … … 70 64 * Return the path on the remote filesystem of WP_CONTENT_DIR. 71 65 * 72 * @access public73 66 * @since 2.7.0 74 67 * … … 82 75 * Return the path on the remote filesystem of WP_PLUGIN_DIR. 83 76 * 84 * @access public85 77 * @since 2.7.0 86 78 * … … 94 86 * Return the path on the remote filesystem of the Themes Directory. 95 87 * 96 * @access public97 88 * @since 2.7.0 98 89 * … … 113 104 * Return the path on the remote filesystem of WP_LANG_DIR. 114 105 * 115 * @access public116 106 * @since 3.2.0 117 107 * … … 125 115 * Locate a folder on the remote filesystem. 126 116 * 127 * @access public128 117 * @since 2.5.0 129 118 * @deprecated 2.7.0 use WP_Filesystem::abspath() or WP_Filesystem::wp_*_dir() instead. … … 148 137 * Locate a folder on the remote filesystem. 149 138 * 150 * @access public151 139 * @since 2.5.0 152 140 * @deprecated 2.7.0 use WP_Filesystem::abspath() or WP_Filesystem::wp_*_dir() methods instead. … … 173 161 * letter is OK Sanitizes \\ to / in windows filepaths. 174 162 * 175 * @access public176 163 * @since 2.7.0 177 164 * … … 239 226 * Expects Windows sanitized path. 240 227 * 241 * @access public242 228 * @since 2.7.0 243 229 * … … 320 306 * @link https://secure.php.net/manual/en/function.fileperms.php 321 307 * 322 * @access public323 308 * @since 2.5.0 324 309 * … … 371 356 * Gets the permissions of the specified file or filepath in their octal format 372 357 * 373 * @access public374 358 * @since 2.5.0 375 359 * @param string $file … … 388 372 * @link https://secure.php.net/manual/en/function.chmod.php#49614 389 373 * 390 * @access public391 374 * @since 2.5.0 392 375 * … … 419 402 * Determine if the string provided contains binary characters. 420 403 * 421 * @access public422 404 * @since 2.7.0 423 405 * … … 434 416 * Default behavior is to do nothing, override this in your subclass, if desired. 435 417 * 436 * @access public437 418 * @since 2.5.0 438 419 * … … 449 430 * Connect filesystem. 450 431 * 451 * @access public452 432 * @since 2.5.0 453 433 * @abstract … … 462 442 * Read entire file into a string. 463 443 * 464 * @access public465 444 * @since 2.5.0 466 445 * @abstract … … 476 455 * Read entire file into an array. 477 456 * 478 * @access public479 457 * @since 2.5.0 480 458 * @abstract … … 490 468 * Write a string to a file. 491 469 * 492 * @access public493 470 * @since 2.5.0 494 471 * @abstract … … 506 483 * Get the current working directory. 507 484 * 508 * @access public509 485 * @since 2.5.0 510 486 * @abstract … … 519 495 * Change current directory. 520 496 * 521 * @access public522 497 * @since 2.5.0 523 498 * @abstract … … 533 508 * Change the file group. 534 509 * 535 * @access public536 510 * @since 2.5.0 537 511 * @abstract … … 549 523 * Change filesystem permissions. 550 524 * 551 * @access public552 525 * @since 2.5.0 553 526 * @abstract … … 565 538 * Get the file owner. 566 539 * 567 * @access public568 540 * @since 2.5.0 569 541 * @abstract … … 579 551 * Get the file's group. 580 552 * 581 * @access public582 553 * @since 2.5.0 583 554 * @abstract … … 593 564 * Copy a file. 594 565 * 595 * @access public596 566 * @since 2.5.0 597 567 * @abstract … … 612 582 * Move a file. 613 583 * 614 * @access public615 584 * @since 2.5.0 616 585 * @abstract … … 629 598 * Delete a file or directory. 630 599 * 631 * @access public632 600 * @since 2.5.0 633 601 * @abstract … … 647 615 * Check if a file or directory exists. 648 616 * 649 * @access public650 617 * @since 2.5.0 651 618 * @abstract … … 661 628 * Check if resource is a file. 662 629 * 663 * @access public664 630 * @since 2.5.0 665 631 * @abstract … … 675 641 * Check if resource is a directory. 676 642 * 677 * @access public678 643 * @since 2.5.0 679 644 * @abstract … … 689 654 * Check if a file is readable. 690 655 * 691 * @access public692 656 * @since 2.5.0 693 657 * @abstract … … 703 667 * Check if a file or directory is writable. 704 668 * 705 * @access public706 669 * @since 2.5.0 707 670 * @abstract … … 717 680 * Gets the file's last access time. 718 681 * 719 * @access public720 682 * @since 2.5.0 721 683 * @abstract … … 731 693 * Gets the file modification time. 732 694 * 733 * @access public734 695 * @since 2.5.0 735 696 * @abstract … … 745 706 * Gets the file size (in bytes). 746 707 * 747 * @access public748 708 * @since 2.5.0 749 709 * @abstract … … 761 721 * Note: If $file doesn't exist, it will be created. 762 722 * 763 * @access public764 723 * @since 2.5.0 765 724 * @abstract … … 779 738 * Create a directory. 780 739 * 781 * @access public782 740 * @since 2.5.0 783 741 * @abstract … … 799 757 * Delete a directory. 800 758 * 801 * @access public802 759 * @since 2.5.0 803 760 * @abstract … … 815 772 * Get details for files in a directory or a specific file. 816 773 * 817 * @access public818 774 * @since 2.5.0 819 775 * @abstract
Note: See TracChangeset
for help on using the changeset viewer.