Make WordPress Core

Ticket #18443: wp.getTaxonomy.patch

File wp.getTaxonomy.patch, 2.7 KB (added by nprasath002, 13 years ago)
  • class-wp-xmlrpc-server.php

    # This patch file was generated by NetBeans IDE
    # Following Index: paths are relative to: /var/www/GSoC/wordtrunk/wp-includes
    # This patch can be applied using context Tools: Patch action on respective folder.
    # It uses platform neutral UTF-8 encoding and \n newlines.
    # Above lines and this line are ignored by the patching process.
     
    6464                        'wp.getMediaItem'               => 'this:wp_getMediaItem',
    6565                        'wp.getMediaLibrary'    => 'this:wp_getMediaLibrary',
    6666                        'wp.getPostFormats'     => 'this:wp_getPostFormats',
     67                        'wp.getTaxonomy'        => 'this:wp_getTaxonomy',
    6768
    6869                        // Blogger API
    6970                        'blogger.getUsersBlogs' => 'this:blogger_getUsersBlogs',
     
    17021703                return $formats;
    17031704        }
    17041705
     1706        /**
     1707         * Retrieve a taxonomy
     1708         *
     1709         * @uses get_taxonomy()
     1710         * @param array $args Method parameters. Contains:
     1711         *  - int     $blog_id
     1712         *  - string  $username
     1713         *  - string  $password
     1714         *  - string  $taxonomy_name
     1715         * @return array contains:
     1716         *  - 'labels'
     1717         *  - 'cap'
     1718         *  - 'hierarchical'
     1719         *  - 'object_type'
     1720         */
     1721        function wp_getTaxonomy( $args ) {
     1722
     1723                $this->escape( $args );
     1724
     1725                $blog_ID        = (int) $args[0];
     1726                $username       = $args[1];
     1727                $password       = $args[2];
     1728                $taxonomy_name  = $args[3];
     1729
     1730                if ( ! $user = $this->login( $username, $password ) )
     1731                        return $this->error;
     1732
     1733                $taxonomy_names = get_taxonomies('','names');
     1734
     1735                if( ! in_array( $taxonomy_name, $taxonomy_names ) )
     1736                        return new IXR_Error( 403, __( 'The taxonomy type specified is not valid' ) );
     1737
     1738                $taxonomy = get_taxonomy( $taxonomy_name );
     1739
     1740                //capability check
     1741                if( ! current_user_can( $taxonomy->cap->edit_terms ) )
     1742                        return new IXR_Error( 401, __( 'Sorry, You are not allowed to edit this post type' ) );
     1743
     1744                $taxonomy = (array)$taxonomy;
     1745
     1746                $taxonomy_type_data = array(
     1747                                'labels'            => $taxonomy['labels'],
     1748                                'cap'               => $taxonomy['cap'],
     1749                                'hierarchical'      => $taxonomy['hierarchical'],
     1750                                'object_type'       => $taxonomy['object_type'],
     1751                        );
     1752
     1753                return $taxonomy_type_data;
     1754
     1755        }
     1756       
    17051757        /* Blogger API functions.
    17061758         * specs on http://plant.blogger.com/api and http://groups.yahoo.com/group/bloggerDev/
    17071759         */