Changeset 53881
- Timestamp:
- 08/11/2022 02:58:55 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r53729 r53881 263 263 * Method arguments. Note: arguments must be ordered as documented. 264 264 * 265 * @type int $ number1A number to add.266 * @type int $ number2A second number to add.265 * @type int $0 A number to add. 266 * @type int $1 A second number to add. 267 267 * } 268 268 * @return int Sum of the two given numbers. … … 685 685 * Method arguments. Note: arguments must be ordered as documented. 686 686 * 687 * @type string $ usernameUsername.688 * @type string $ passwordPassword.687 * @type string $0 Username. 688 * @type string $1 Password. 689 689 * } 690 690 * @return array|IXR_Error Array contains: … … 1270 1270 * Method arguments. Note: top-level arguments must be ordered as documented. 1271 1271 * 1272 * @type int $ blog_idBlog ID (unused).1273 * @type string $ usernameUsername.1274 * @type string $ passwordPassword.1275 * @type array $ content_struct{1272 * @type int $0 Blog ID (unused). 1273 * @type string $1 Username. 1274 * @type string $2 Password. 1275 * @type array $3 { 1276 1276 * Content struct for adding a new post. See wp_insert_post() for information on 1277 1277 * additional post fields … … 1708 1708 * Method arguments. Note: arguments must be ordered as documented. 1709 1709 * 1710 * @type int $ blog_idBlog ID (unused).1711 * @type string $ usernameUsername.1712 * @type string $ passwordPassword.1713 * @type int $ post_idPost ID.1714 * @type array $ content_structExtra content arguments.1710 * @type int $0 Blog ID (unused). 1711 * @type string $1 Username. 1712 * @type string $2 Password. 1713 * @type int $3 Post ID. 1714 * @type array $4 Extra content arguments. 1715 1715 * } 1716 1716 * @return true|IXR_Error True on success, IXR_Error on failure. … … 1793 1793 * Method arguments. Note: arguments must be ordered as documented. 1794 1794 * 1795 * @type int $ blog_idBlog ID (unused).1796 * @type string $ usernameUsername.1797 * @type string $ passwordPassword.1798 * @type int $ post_idPost ID.1795 * @type int $0 Blog ID (unused). 1796 * @type string $1 Username. 1797 * @type string $2 Password. 1798 * @type int $3 Post ID. 1799 1799 * } 1800 1800 * @return true|IXR_Error True on success, IXR_Error instance on failure. … … 1856 1856 * Method arguments. Note: arguments must be ordered as documented. 1857 1857 * 1858 * @type int $ blog_idBlog ID (unused).1859 * @type string $ usernameUsername.1860 * @type string $ passwordPassword.1861 * @type int $ post_idPost ID.1862 * @type array $ fieldsThe subset of post type fields to return.1858 * @type int $0 Blog ID (unused). 1859 * @type string $1 Username. 1860 * @type string $2 Password. 1861 * @type int $3 Post ID. 1862 * @type array $4 Optional. The subset of post type fields to return. 1863 1863 * } 1864 1864 * @return array|IXR_Error Array contains (based on $fields parameter): … … 1944 1944 * Method arguments. Note: arguments must be ordered as documented. 1945 1945 * 1946 * @type int $ blog_idBlog ID (unused).1947 * @type string $ usernameUsername.1948 * @type string $ passwordPassword.1949 * @type array $ filterOptional. Modifies the query used to retrieve posts. Accepts 'post_type',1950 * 1951 * 1952 * @type array $ fieldsOptional. The subset of post type fields to return in the response array.1946 * @type int $0 Blog ID (unused). 1947 * @type string $1 Username. 1948 * @type string $2 Password. 1949 * @type array $3 Optional. Modifies the query used to retrieve posts. Accepts 'post_type', 1950 * 'post_status', 'number', 'offset', 'orderby', 's', and 'order'. 1951 * Default empty array. 1952 * @type array $4 Optional. The subset of post type fields to return in the response array. 1953 1953 * } 1954 1954 * @return array|IXR_Error Array contains a collection of posts. … … 2051 2051 * Method arguments. Note: arguments must be ordered as documented. 2052 2052 * 2053 * @type int $ blog_idBlog ID (unused).2054 * @type string $ usernameUsername.2055 * @type string $ passwordPassword.2056 * @type array $ content_structContent struct for adding a new term. The struct must contain2057 * 2058 * 2053 * @type int $0 Blog ID (unused). 2054 * @type string $1 Username. 2055 * @type string $2 Password. 2056 * @type array $3 Content struct for adding a new term. The struct must contain 2057 * the term 'name' and 'taxonomy'. Optional accepted values include 2058 * 'parent', 'description', and 'slug'. 2059 2059 * } 2060 2060 * @return int|IXR_Error The term ID on success, or an IXR_Error object on failure. … … 2154 2154 * Method arguments. Note: arguments must be ordered as documented. 2155 2155 * 2156 * @type int $ blog_idBlog ID (unused).2157 * @type string $ usernameUsername.2158 * @type string $ passwordPassword.2159 * @type int $ term_idTerm ID.2160 * @type array $ content_structContent struct for editing a term. The struct must contain the2161 * term ''taxonomy'. Optional accepted values include 'name', 'parent',2162 * 2156 * @type int $0 Blog ID (unused). 2157 * @type string $1 Username. 2158 * @type string $2 Password. 2159 * @type int $3 Term ID. 2160 * @type array $4 Content struct for editing a term. The struct must contain the 2161 * term 'taxonomy'. Optional accepted values include 'name', 'parent', 2162 * 'description', and 'slug'. 2163 2163 * } 2164 2164 * @return true|IXR_Error True on success, IXR_Error instance on failure. … … 2272 2272 * Method arguments. Note: arguments must be ordered as documented. 2273 2273 * 2274 * @type int $ blog_idBlog ID (unused).2275 * @type string $ usernameUsername.2276 * @type string $ passwordPassword.2277 * @type string $ taxonomy_nameTaxonomy name.2278 * @type int $ term_idTerm ID.2274 * @type int $0 Blog ID (unused). 2275 * @type string $1 Username. 2276 * @type string $2 Password. 2277 * @type string $3 Taxonomy name. 2278 * @type int $4 Term ID. 2279 2279 * } 2280 2280 * @return true|IXR_Error True on success, IXR_Error instance on failure. … … 2342 2342 * Method arguments. Note: arguments must be ordered as documented. 2343 2343 * 2344 * @type int $ blog_idBlog ID (unused).2345 * @type string $ usernameUsername.2346 * @type string $ passwordPassword.2347 * @type string $ taxonomyTaxonomy name.2348 * @type string $term_idTerm ID.2344 * @type int $0 Blog ID (unused). 2345 * @type string $1 Username. 2346 * @type string $2 Password. 2347 * @type string $3 Taxonomy name. 2348 * @type int $4 Term ID. 2349 2349 * } 2350 2350 * @return array|IXR_Error IXR_Error on failure, array on success, containing: … … 2415 2415 * Method arguments. Note: arguments must be ordered as documented. 2416 2416 * 2417 * @type int $ blog_idBlog ID (unused).2418 * @type string $ usernameUsername.2419 * @type string $ passwordPassword.2420 * @type string $ taxonomyTaxonomy name.2421 * @type array $ filterOptional. Modifies the query used to retrieve posts. Accepts 'number',2422 * 2417 * @type int $0 Blog ID (unused). 2418 * @type string $1 Username. 2419 * @type string $2 Password. 2420 * @type string $3 Taxonomy name. 2421 * @type array $4 Optional. Modifies the query used to retrieve posts. Accepts 'number', 2422 * 'offset', 'orderby', 'order', 'hide_empty', and 'search'. Default empty array. 2423 2423 * } 2424 2424 * @return array|IXR_Error An associative array of terms data on success, IXR_Error instance otherwise. … … 2507 2507 * Method arguments. Note: arguments must be ordered as documented. 2508 2508 * 2509 * @type int $ blog_idBlog ID (unused).2510 * @type string $ usernameUsername.2511 * @type string $ passwordPassword.2512 * @type string $ taxonomyTaxonomy name.2513 * @type array $ fieldsOptional. Array of taxonomy fields to limit to in the return.2514 * 2515 * 2509 * @type int $0 Blog ID (unused). 2510 * @type string $1 Username. 2511 * @type string $2 Password. 2512 * @type string $3 Taxonomy name. 2513 * @type array $4 Optional. Array of taxonomy fields to limit to in the return. 2514 * Accepts 'labels', 'cap', 'menu', and 'object_type'. 2515 * Default empty array. 2516 2516 * } 2517 2517 * @return array|IXR_Error An array of taxonomy data on success, IXR_Error instance otherwise. … … 2573 2573 * Method arguments. Note: arguments must be ordered as documented. 2574 2574 * 2575 * @type int $ blog_idBlog ID (unused).2576 * @type string $ usernameUsername.2577 * @type string $ passwordPassword.2578 * @type array $ filterOptional. An array of arguments for retrieving taxonomies.2579 * @type array $ fieldsOptional. The subset of taxonomy fields to return.2575 * @type int $0 Blog ID (unused). 2576 * @type string $1 Username. 2577 * @type string $2 Password. 2578 * @type array $3 Optional. An array of arguments for retrieving taxonomies. 2579 * @type array $4 Optional. The subset of taxonomy fields to return. 2580 2580 * } 2581 2581 * @return array|IXR_Error An associative array of taxonomy data with returned fields determined … … 2641 2641 * Method arguments. Note: arguments must be ordered as documented. 2642 2642 * 2643 * @type int $ blog_id (unused)2644 * @type string $ username2645 * @type string $ password2646 * @type int $ user_id2647 * @type array $ fields (optional)2643 * @type int $0 Blog ID (unused). 2644 * @type string $1 Username. 2645 * @type string $2 Password. 2646 * @type int $3 User ID. 2647 * @type array $4 Optional. Array of fields to return. 2648 2648 * } 2649 2649 * @return array|IXR_Error Array contains (based on $fields parameter): … … 2723 2723 * Method arguments. Note: arguments must be ordered as documented. 2724 2724 * 2725 * @type int $ blog_id (unused)2726 * @type string $ username2727 * @type string $ password2728 * @type array $ filter (optional)2729 * @type array $ fields (optional)2725 * @type int $0 Blog ID (unused). 2726 * @type string $1 Username. 2727 * @type string $2 Password. 2728 * @type array $3 Optional. Arguments for the user query. 2729 * @type array $4 Optional. Fields to return. 2730 2730 * } 2731 2731 * @return array|IXR_Error users data … … 2805 2805 * Method arguments. Note: arguments must be ordered as documented. 2806 2806 * 2807 * @type int $ blog_id (unused)2808 * @type string $ username2809 * @type string $ password2810 * @type array $ fields (optional)2807 * @type int $0 Blog ID (unused). 2808 * @type string $1 Username 2809 * @type string $2 Password 2810 * @type array $3 Optional. Fields to return. 2811 2811 * } 2812 2812 * @return array|IXR_Error (@see wp_getUser) … … 2854 2854 * Method arguments. Note: arguments must be ordered as documented. 2855 2855 * 2856 * @type int $ blog_id (unused)2857 * @type string $ username2858 * @type string $ password2859 * @type array $ content_structIt can optionally contain:2856 * @type int $0 Blog ID (unused). 2857 * @type string $1 Username. 2858 * @type string $2 Password. 2859 * @type array $3 Content struct. It can optionally contain: 2860 2860 * - 'first_name' 2861 2861 * - 'last_name' … … 2945 2945 * Method arguments. Note: arguments must be ordered as documented. 2946 2946 * 2947 * @type int $ blog_id (unused)2948 * @type int $ page_id2949 * @type string $ username2950 * @type string $ password2947 * @type int $0 Blog ID (unused). 2948 * @type int $1 Page ID. 2949 * @type string $2 Username. 2950 * @type string $3 Password. 2951 2951 * } 2952 2952 * @return array|IXR_Error … … 2993 2993 * Method arguments. Note: arguments must be ordered as documented. 2994 2994 * 2995 * @type int $ blog_id (unused)2996 * @type string $ username2997 * @type string $ password2998 * @type int $ num_pages2995 * @type int $0 Blog ID (unused). 2996 * @type string $1 Username. 2997 * @type string $2 Password. 2998 * @type int $3 Optional. Number of pages. Default 10. 2999 2999 * } 3000 3000 * @return array|IXR_Error … … 3054 3054 * Method arguments. Note: arguments must be ordered as documented. 3055 3055 * 3056 * @type int $ blog_id (unused)3057 * @type string $ username3058 * @type string $ password3059 * @type array $ content_struct3056 * @type int $0 Blog ID (unused). 3057 * @type string $1 Username. 3058 * @type string $2 Password. 3059 * @type array $3 Content struct. 3060 3060 * } 3061 3061 * @return int|IXR_Error … … 3089 3089 * Method arguments. Note: arguments must be ordered as documented. 3090 3090 * 3091 * @type int $ blog_id (unused)3092 * @type string $ username3093 * @type string $ password3094 * @type int $ page_id3091 * @type int $0 Blog ID (unused). 3092 * @type string $1 Username. 3093 * @type string $2 Password. 3094 * @type int $3 Page ID. 3095 3095 * } 3096 3096 * @return true|IXR_Error True, if success. … … 3150 3150 * Method arguments. Note: arguments must be ordered as documented. 3151 3151 * 3152 * @type int $ blog_id (unused)3153 * @type int $ page_id3154 * @type string $ username3155 * @type string $ password3156 * @type string $ content3157 * @type string $publish3152 * @type int $0 Blog ID (unused). 3153 * @type int $1 Page ID. 3154 * @type string $2 Username. 3155 * @type string $3 Password. 3156 * @type string $4 Content. 3157 * @type int $5 Publish flag. 0 for draft, 1 for publish. 3158 3158 * } 3159 3159 * @return array|IXR_Error … … 3215 3215 * Method arguments. Note: arguments must be ordered as documented. 3216 3216 * 3217 * @type int $ blog_id (unused)3218 * @type string $ username3219 * @type string $ password3217 * @type int $0 Blog ID (unused). 3218 * @type string $1 Username. 3219 * @type string $2 Password. 3220 3220 * } 3221 3221 * @return array|IXR_Error … … 3278 3278 * Method arguments. Note: arguments must be ordered as documented. 3279 3279 * 3280 * @type int $ blog_id (unused)3281 * @type string $ username3282 * @type string $ password3280 * @type int $0 Blog ID (unused). 3281 * @type string $1 Username. 3282 * @type string $2 Password. 3283 3283 * } 3284 3284 * @return array|IXR_Error … … 3322 3322 * Method arguments. Note: arguments must be ordered as documented. 3323 3323 * 3324 * @type int $ blog_id (unused)3325 * @type string $ username3326 * @type string $ password3324 * @type int $0 Blog ID (unused). 3325 * @type string $1 Username. 3326 * @type string $2 Password. 3327 3327 * } 3328 3328 * @return array|IXR_Error … … 3374 3374 * Method arguments. Note: arguments must be ordered as documented. 3375 3375 * 3376 * @type int $ blog_id (unused)3377 * @type string $ username3378 * @type string $ password3379 * @type array $ category3376 * @type int $0 Blog ID (unused). 3377 * @type string $1 Username. 3378 * @type string $2 Password. 3379 * @type array $3 Category. 3380 3380 * } 3381 3381 * @return int|IXR_Error Category ID. … … 3457 3457 * Method arguments. Note: arguments must be ordered as documented. 3458 3458 * 3459 * @type int $ blog_id (unused)3460 * @type string $ username3461 * @type string $ password3462 * @type int $ category_id3459 * @type int $0 Blog ID (unused). 3460 * @type string $1 Username. 3461 * @type string $2 Password. 3462 * @type int $3 Category ID. 3463 3463 * } 3464 3464 * @return bool|IXR_Error See wp_delete_term() for return info. … … 3508 3508 * Method arguments. Note: arguments must be ordered as documented. 3509 3509 * 3510 * @type int $ blog_id (unused)3511 * @type string $ username3512 * @type string $ password3513 * @type array $ category3514 * @type int $ max_results3510 * @type int $0 Blog ID (unused). 3511 * @type string $1 Username. 3512 * @type string $2 Password. 3513 * @type array $3 Category 3514 * @type int $4 Max number of results. 3515 3515 * } 3516 3516 * @return array|IXR_Error … … 3560 3560 * Method arguments. Note: arguments must be ordered as documented. 3561 3561 * 3562 * @type int $ blog_id (unused)3563 * @type string $ username3564 * @type string $ password3565 * @type int $ comment_id3562 * @type int $0 Blog ID (unused). 3563 * @type string $1 Username. 3564 * @type string $2 Password. 3565 * @type int $3 Comment ID. 3566 3566 * } 3567 3567 * @return array|IXR_Error … … 3613 3613 * Method arguments. Note: arguments must be ordered as documented. 3614 3614 * 3615 * @type int $ blog_id (unused)3616 * @type string $ username3617 * @type string $ password3618 * @type array $ struct3615 * @type int $0 Blog ID (unused). 3616 * @type string $1 Username. 3617 * @type string $2 Password. 3618 * @type array $3 Optional. Query arguments. 3619 3619 * } 3620 3620 * @return array|IXR_Error Contains a collection of comments. See wp_xmlrpc_server::wp_getComment() for a description of each item contents … … 3700 3700 * Method arguments. Note: arguments must be ordered as documented. 3701 3701 * 3702 * @type int $ blog_id (unused)3703 * @type string $ username3704 * @type string $ password3705 * @type int $ comment_ID3702 * @type int $0 Blog ID (unused). 3703 * @type string $1 Username. 3704 * @type string $2 Password. 3705 * @type int $3 Comment ID. 3706 3706 * } 3707 3707 * @return bool|IXR_Error See wp_delete_comment(). … … 3766 3766 * Method arguments. Note: arguments must be ordered as documented. 3767 3767 * 3768 * @type int $ blog_id (unused)3769 * @type string $ username3770 * @type string $ password3771 * @type int $ comment_ID3772 * @type array $ content_struct3768 * @type int $0 Blog ID (unused). 3769 * @type string $1 Username. 3770 * @type string $2 Password. 3771 * @type int $3 Comment ID. 3772 * @type array $4 Content structure. 3773 3773 * } 3774 3774 * @return true|IXR_Error True, on success. … … 3866 3866 * Method arguments. Note: arguments must be ordered as documented. 3867 3867 * 3868 * @type int $ blog_id (unused)3869 * @type string $ username3870 * @type string $ password3871 * @type string|int $ post3872 * @type array $ content_struct3868 * @type int $0 Blog ID (unused). 3869 * @type string $1 Username. 3870 * @type string $2 Password. 3871 * @type string|int $3 Post ID or URL. 3872 * @type array $4 Content structure. 3873 3873 * } 3874 3874 * @return int|IXR_Error See wp_new_comment(). … … 4021 4021 * Method arguments. Note: arguments must be ordered as documented. 4022 4022 * 4023 * @type int $ blog_id (unused)4024 * @type string $ username4025 * @type string $ password4023 * @type int $0 Blog ID (unused). 4024 * @type string $1 Username. 4025 * @type string $2 Password. 4026 4026 * } 4027 4027 * @return array|IXR_Error … … 4056 4056 * Method arguments. Note: arguments must be ordered as documented. 4057 4057 * 4058 * @type int $ blog_id (unused)4059 * @type string $ username4060 * @type string $ password4061 * @type int $ post_id4058 * @type int $0 Blog ID (unused). 4059 * @type string $1 Username. 4060 * @type string $2 Password. 4061 * @type int $3 Post ID. 4062 4062 * } 4063 4063 * @return array|IXR_Error … … 4105 4105 * Method arguments. Note: arguments must be ordered as documented. 4106 4106 * 4107 * @type int $ blog_id (unused)4108 * @type string $ username4109 * @type string $ password4107 * @type int $0 Blog ID (unused). 4108 * @type string $1 Username. 4109 * @type string $2 Password. 4110 4110 * } 4111 4111 * @return array|IXR_Error … … 4140 4140 * Method arguments. Note: arguments must be ordered as documented. 4141 4141 * 4142 * @type int $ blog_id (unused)4143 * @type string $ username4144 * @type string $ password4142 * @type int $0 Blog ID (unused). 4143 * @type string $1 Username. 4144 * @type string $2 Password. 4145 4145 * } 4146 4146 * @return array|IXR_Error … … 4175 4175 * Method arguments. Note: arguments must be ordered as documented. 4176 4176 * 4177 * @type int $ blog_id (unused)4178 * @type string $ username4179 * @type string $ password4177 * @type int $0 Blog ID (unused). 4178 * @type string $1 Username. 4179 * @type string $2 Password. 4180 4180 * } 4181 4181 * @return array|IXR_Error … … 4210 4210 * Method arguments. Note: arguments must be ordered as documented. 4211 4211 * 4212 * @type int $ blog_id (unused)4213 * @type string $ username4214 * @type string $ password4215 * @type array $ options4212 * @type int $0 Blog ID (unused). 4213 * @type string $1 Username. 4214 * @type string $2 Password. 4215 * @type array $3 Optional. Options. 4216 4216 * } 4217 4217 * @return array|IXR_Error … … 4274 4274 * Method arguments. Note: arguments must be ordered as documented. 4275 4275 * 4276 * @type int $ blog_id (unused)4277 * @type string $ username4278 * @type string $ password4279 * @type array $ options4276 * @type int $0 Blog ID (unused). 4277 * @type string $1 Username. 4278 * @type string $2 Password. 4279 * @type array $3 Options. 4280 4280 * } 4281 4281 * @return array|IXR_Error … … 4323 4323 * Method arguments. Note: arguments must be ordered as documented. 4324 4324 * 4325 * @type int $ blog_id (unused)4326 * @type string $ username4327 * @type string $ password4328 * @type int $ attachment_id4325 * @type int $0 Blog ID (unused). 4326 * @type string $1 Username. 4327 * @type string $2 Password. 4328 * @type int $3 Attachment ID. 4329 4329 * } 4330 4330 * @return array|IXR_Error Associative array contains: … … 4384 4384 * Method arguments. Note: arguments must be ordered as documented. 4385 4385 * 4386 * @type int $ blog_id (unused)4387 * @type string $ username4388 * @type string $ password4389 * @type array $ struct4386 * @type int $0 Blog ID (unused). 4387 * @type string $1 Username. 4388 * @type string $2 Password. 4389 * @type array $3 Query arguments. 4390 4390 * } 4391 4391 * @return array|IXR_Error Contains a collection of media items. See wp_xmlrpc_server::wp_getMediaItem() for a description of each item contents … … 4442 4442 * Method arguments. Note: arguments must be ordered as documented. 4443 4443 * 4444 * @type int $ blog_id (unused)4445 * @type string $ username4446 * @type string $ password4444 * @type int $0 Blog ID (unused). 4445 * @type string $1 Username. 4446 * @type string $2 Password. 4447 4447 * } 4448 4448 * @return array|IXR_Error List of post formats, otherwise IXR_Error object. … … 4496 4496 * Method arguments. Note: arguments must be ordered as documented. 4497 4497 * 4498 * @type int $ blog_id (unused)4499 * @type string $ username4500 * @type string $ password4501 * @type string $ post_type_name4502 * @type array $ fields (optional)4498 * @type int $0 Blog ID (unused). 4499 * @type string $1 Username. 4500 * @type string $2 Password. 4501 * @type string $3 Post type name. 4502 * @type array $4 Optional. Fields to fetch. 4503 4503 * } 4504 4504 * @return array|IXR_Error Array contains: … … 4569 4569 * Method arguments. Note: arguments must be ordered as documented. 4570 4570 * 4571 * @type int $ blog_id (unused)4572 * @type string $ username4573 * @type string $ password4574 * @type array $ filter (optional)4575 * @type array $ fields (optional)4571 * @type int $0 Blog ID (unused). 4572 * @type string $1 Username. 4573 * @type string $2 Password. 4574 * @type array $3 Optional. Query arguments. 4575 * @type array $4 Optional. Fields to fetch. 4576 4576 * } 4577 4577 * @return array|IXR_Error … … 4632 4632 * Method arguments. Note: arguments must be ordered as documented. 4633 4633 * 4634 * @type int $ blog_id (unused)4635 * @type string $ username4636 * @type string $ password4637 * @type int $ post_id4638 * @type array $ fields (optional)4634 * @type int $0 Blog ID (unused). 4635 * @type string $1 Username. 4636 * @type string $2 Password. 4637 * @type int $3 Post ID. 4638 * @type array $4 Optional. Fields to fetch. 4639 4639 * } 4640 4640 * @return array|IXR_Error contains a collection of posts. … … 4721 4721 * Method arguments. Note: arguments must be ordered as documented. 4722 4722 * 4723 * @type int $ blog_id (unused)4724 * @type string $ username4725 * @type string $ password4726 * @type int $ revision_id4723 * @type int $0 Blog ID (unused). 4724 * @type string $1 Username. 4725 * @type string $2 Password. 4726 * @type int $3 Revision ID. 4727 4727 * } 4728 4728 * @return bool|IXR_Error false if there was an error restoring, true if success. … … 4790 4790 * Method arguments. Note: arguments must be ordered as documented. 4791 4791 * 4792 * @type int $ blog_id (unused)4793 * @type string $ username4794 * @type string $ password4792 * @type int $0 Blog ID (unused). 4793 * @type string $1 Username. 4794 * @type string $2 Password. 4795 4795 * } 4796 4796 * @return array|IXR_Error … … 4839 4839 * Method arguments. Note: arguments must be ordered as documented. 4840 4840 * 4841 * @type string $username Username. 4842 * @type string $password Password. 4841 * @type int $0 Blog ID (unused). 4842 * @type string $1 Username. 4843 * @type string $2 Password. 4843 4844 * } 4844 4845 * @return array|IXR_Error … … 4880 4881 * Method arguments. Note: arguments must be ordered as documented. 4881 4882 * 4882 * @type int $ blog_id (unused)4883 * @type string $ username4884 * @type string $ password4883 * @type int $0 Blog ID (unused). 4884 * @type string $1 Username. 4885 * @type string $2 Password. 4885 4886 * } 4886 4887 * @return array|IXR_Error … … 4923 4924 * Method arguments. Note: arguments must be ordered as documented. 4924 4925 * 4925 * @type int $ blog_id (unused)4926 * @type int $ post_ID4927 * @type string $ username4928 * @type string $ password4926 * @type int $0 Blog ID (unused). 4927 * @type int $1 Post ID. 4928 * @type string $2 Username. 4929 * @type string $3 Password. 4929 4930 * } 4930 4931 * @return array|IXR_Error … … 4978 4979 * Method arguments. Note: arguments must be ordered as documented. 4979 4980 * 4980 * @type string $ appkey (unused)4981 * @type int $ blog_id (unused)4982 * @type string $ username4983 * @type string $ password4984 * @type int $ numberposts (optional)4981 * @type string $0 App key (unused). 4982 * @type int $1 Blog ID (unused). 4983 * @type string $2 Username. 4984 * @type string $3 Password. 4985 * @type int $4 Optional. Number of posts. 4985 4986 * } 4986 4987 * @return array|IXR_Error … … 5076 5077 * Method arguments. Note: arguments must be ordered as documented. 5077 5078 * 5078 * @type string $ appkey (unused)5079 * @type int $ blog_id (unused)5080 * @type string $ username5081 * @type string $ password5082 * @type string $ content5083 * @type string $publish5079 * @type string $0 App key (unused). 5080 * @type int $1 Blog ID (unused). 5081 * @type string $2 Username. 5082 * @type string $3 Password. 5083 * @type string $4 Content. 5084 * @type int $5 Publish flag. 0 for draft, 1 for publish. 5084 5085 * } 5085 5086 * @return int|IXR_Error … … 5151 5152 * Method arguments. Note: arguments must be ordered as documented. 5152 5153 * 5153 * @type int $ blog_id (unused)5154 * @type int $ post_ID5155 * @type string $ username5156 * @type string $ password5157 * @type string $ content5158 * @type bool $publish5154 * @type int $0 Blog ID (unused). 5155 * @type int $1 Post ID. 5156 * @type string $2 Username. 5157 * @type string $3 Password. 5158 * @type string $4 Content 5159 * @type int $5 Publish flag. 0 for draft, 1 for publish. 5159 5160 * } 5160 5161 * @return true|IXR_Error true when done. … … 5230 5231 * Method arguments. Note: arguments must be ordered as documented. 5231 5232 * 5232 * @type int $ blog_id (unused)5233 * @type int $ post_ID5234 * @type string $ username5235 * @type string $ password5233 * @type int $0 Blog ID (unused). 5234 * @type int $1 Post ID. 5235 * @type string $2 Username. 5236 * @type string $3 Password. 5236 5237 * } 5237 5238 * @return true|IXR_Error True when post is deleted. … … 5316 5317 * Method arguments. Note: arguments must be ordered as documented. 5317 5318 * 5318 * @type int $ blog_id (unused)5319 * @type string $ username5320 * @type string $ password5321 * @type array $ content_struct5322 * @type int $ publish5319 * @type int $0 Blog ID (unused). 5320 * @type string $1 Username. 5321 * @type string $2 Password. 5322 * @type array $3 Content structure. 5323 * @type int $4 Optional. Publish flag. 0 for draft, 1 for publish. Default 0. 5323 5324 * } 5324 5325 * @return int|IXR_Error … … 5694 5695 * Method arguments. Note: arguments must be ordered as documented. 5695 5696 * 5696 * @type int $ blog_id (unused)5697 * @type string $ username5698 * @type string $ password5699 * @type array $ content_struct5700 * @type int $ publish5697 * @type int $0 Post ID. 5698 * @type string $1 Username. 5699 * @type string $2 Password. 5700 * @type array $3 Content structure. 5701 * @type int $4 Optional. Publish flag. 0 for draft, 1 for publish. Default 0. 5701 5702 * } 5702 5703 * @return true|IXR_Error True on success. … … 6026 6027 * Method arguments. Note: arguments must be ordered as documented. 6027 6028 * 6028 * @type int $blog_id (unused) 6029 * @type int $post_ID 6030 * @type string $username 6031 * @type string $password 6029 * @type int $0 Post ID. 6030 * @type string $1 Username. 6031 * @type string $2 Password. 6032 6032 * } 6033 6033 * @return array|IXR_Error … … 6168 6168 * Method arguments. Note: arguments must be ordered as documented. 6169 6169 * 6170 * @type int $ blog_id (unused)6171 * @type string $ username6172 * @type string $ password6173 * @type int $ numberposts6170 * @type int $0 Blog ID (unused). 6171 * @type string $1 Username. 6172 * @type string $2 Password. 6173 * @type int $3 Optional. Number of posts. 6174 6174 * } 6175 6175 * @return array|IXR_Error … … 6295 6295 * Method arguments. Note: arguments must be ordered as documented. 6296 6296 * 6297 * @type int $ blog_id (unused)6298 * @type string $ username6299 * @type string $ password6297 * @type int $0 Blog ID (unused). 6298 * @type string $1 Username. 6299 * @type string $2 Password. 6300 6300 * } 6301 6301 * @return array|IXR_Error … … 6354 6354 * Method arguments. Note: arguments must be ordered as documented. 6355 6355 * 6356 * @type int $ blog_id (unused)6357 * @type string $ username6358 * @type string $ password6359 * @type array $ data6356 * @type int $0 Blog ID (unused). 6357 * @type string $1 Username. 6358 * @type string $2 Password. 6359 * @type array $3 Data. 6360 6360 * } 6361 6361 * @return array|IXR_Error … … 6473 6473 * Method arguments. Note: arguments must be ordered as documented. 6474 6474 * 6475 * @type int $ blog_id (unused)6476 * @type string $ username6477 * @type string $ password6478 * @type int $ numberposts6475 * @type int $0 Blog ID (unused). 6476 * @type string $1 Username. 6477 * @type string $2 Password. 6478 * @type int $3 Optional. Number of posts. 6479 6479 * } 6480 6480 * @return array|IXR_Error … … 6537 6537 * Method arguments. Note: arguments must be ordered as documented. 6538 6538 * 6539 * @type int $ blog_id (unused)6540 * @type string $ username6541 * @type string $ password6539 * @type int $0 Blog ID (unused). 6540 * @type string $1 Username. 6541 * @type string $2 Password. 6542 6542 * } 6543 6543 * @return array|IXR_Error … … 6590 6590 * Method arguments. Note: arguments must be ordered as documented. 6591 6591 * 6592 * @type int $ post_ID6593 * @type string $ username6594 * @type string $ password6592 * @type int $0 Post ID. 6593 * @type string $1 Username. 6594 * @type string $2 Password. 6595 6595 * } 6596 6596 * @return array|IXR_Error … … 6643 6643 * Method arguments. Note: arguments must be ordered as documented. 6644 6644 * 6645 * @type int $ post_ID6646 * @type string $ username6647 * @type string $ password6648 * @type array $ categories6645 * @type int $0 Post ID. 6646 * @type string $1 Username. 6647 * @type string $2 Password. 6648 * @type array $3 Categories. 6649 6649 * } 6650 6650 * @return true|IXR_Error True on success. … … 6769 6769 * Method arguments. Note: arguments must be ordered as documented. 6770 6770 * 6771 * @type int $ post_ID6772 * @type string $ username6773 * @type string $ password6771 * @type int $0 Post ID. 6772 * @type string $1 Username. 6773 * @type string $2 Password. 6774 6774 * } 6775 6775 * @return int|IXR_Error … … 6821 6821 * Method arguments. Note: arguments must be ordered as documented. 6822 6822 * 6823 * @type string $ pagelinkedfrom6824 * @type string $ pagelinkedto6823 * @type string $0 URL of page linked from. 6824 * @type string $1 URL of page linked to. 6825 6825 * } 6826 6826 * @return string|IXR_Error
Note: See TracChangeset
for help on using the changeset viewer.