Make WordPress Core


Ignore:
Timestamp:
09/20/2012 01:52:36 PM (13 years ago)
Author:
ryan
Message:

phpdoc cleanups for general-template.php. Props c3mdigital, SergeyBiryukov. fixes #21893

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/general-template.php

    r21904 r21926  
    148148 * @since 2.7.0
    149149 * @param boolean $echo Default to echo and not return the form.
     150 * @return string|null String when retrieving, null when displaying or if searchform.php exists.
    150151 */
    151152function get_search_form($echo = true) {
     
    182183 * @param string $redirect Optional path to redirect to on login/logout.
    183184 * @param boolean $echo Default to echo and not return the link.
     185 * @return string|null String when retrieving, null when displaying.
    184186 */
    185187function wp_loginout($redirect = '', $echo = true) {
     
    206208 *
    207209 * @param string $redirect Path to redirect to on logout.
     210 * @return string A log out URL.
    208211 */
    209212function wp_logout_url($redirect = '') {
     
    230233 * @param string $redirect Path to redirect to on login.
    231234 * @param bool $force_reauth Whether to force reauthorization, even if a cookie is present. Default is false.
    232  * @return string A log in url
     235 * @return string A log in URL.
    233236 */
    234237function wp_login_url($redirect = '', $force_reauth = false) {
     
    249252 *
    250253 * @since 3.0.0
    251  * @param array $args Configuration options to modify the form output
    252  * @return Void, or string containing the form
     254 * @param array $args Configuration options to modify the form output.
     255 * @return string|null String when retrieving, null when displaying.
    253256 */
    254257function wp_login_form( $args = array() ) {
     
    306309 *
    307310 * @param string $redirect Path to redirect to on login.
     311 * @return string Lost password URL.
    308312 */
    309313function wp_lostpassword_url( $redirect = '' ) {
     
    329333 * @param string $after Text to output after the link (defaults to </li>).
    330334 * @param boolean $echo Default to echo and not return the link.
     335 * @return string|null String when retrieving, null when displaying.
    331336 */
    332337function wp_register( $before = '<li>', $after = '</li>', $echo = true ) {
     
    862867 *
    863868 * @param string|array $args Optional. Override defaults.
     869 * @return string|null String when retrieving, null when displaying.
    864870 */
    865871function wp_get_archives($args = '') {
     
    10631069 * @param bool $initial Optional, default is true. Use initial calendar names.
    10641070 * @param bool $echo Optional, default is true. Set to false for return.
     1071 * @return string|null String when retrieving, null when displaying.
    10651072 */
    10661073function get_calendar($initial = true, $echo = true) {
     
    22562263 * @access private
    22572264 *
    2258  * @param any $helper One of the values to compare
    2259  * @param any $current (true) The other value to compare if not just true
     2265 * @param mixed $helper One of the values to compare
     2266 * @param mixed $current (true) The other value to compare if not just true
    22602267 * @param bool $echo Whether to echo or just return the string
    22612268 * @param string $type The type of checked|selected|disabled we are doing
Note: See TracChangeset for help on using the changeset viewer.