api_blogger.inc.php File Reference

Go to the source code of this file.

Functions

 f_blogger_newPost ($m)
 f_blogger_editPost ($m)
 f_blogger_getUsersBlogs ($m)
 f_blogger_getRecentPosts ($m)
 f_blogger_getPost ($m)
 f_blogger_deletePost ($m)
 f_blogger_getTemplate ($m)
 f_blogger_setTemplate ($m)
 f_blogger_getUserInfo ($m)
 _getRecentItemsBlogger ($blogid, $username, $password, $amount)
 _getItemBlogger ($itemid, $username, $password)
 blogger_extractTitle ($body)
 blogger_extractCategory ($body)
 blogger_matchTag ($tag, $body)
 blogger_removeSpecialTags ($body)
 blogger_specialTags ($item)

Variables

 $f_blogger_newPost_sig
 $f_blogger_newPost_doc = "Adds a new item to the given blog. Adds it as a draft when publish is false"
 $f_blogger_editPost_sig
 $f_blogger_editPost_doc = "Edits an item of a blog"
 $f_blogger_getUsersBlogs_sig
 $f_blogger_getUsersBlogs_doc = "Returns a list of all the blogs where the given member is on the team"
 $f_blogger_getRecentPosts_sig
 $f_blogger_getRecentPosts_doc = "Returns a maximum of 20 recent items"
 $f_blogger_getPost_sig
 $f_blogger_getPost_doc = "Returns an item (only the item body!)"
 $f_blogger_deletePost_sig
 $f_blogger_deletePost_doc = "Deletes an item"
 $f_blogger_getTemplate_sig
 $f_blogger_getTemplate_doc = "Returns the required part of the default skin for the given blog"
 $f_blogger_setTemplate_sig
 $f_blogger_setTemplate_doc = "Changes a part of the default skin for the selected blog"
 $f_blogger_getUserInfo_sig
 $f_blogger_getUserInfo_doc = "Returns info on the user"
 $functionDefs


Function Documentation

_getItemBlogger ( itemid,
username,
password 
)

Returns one item (Blogger version)

Definition at line 330 of file api_blogger.inc.php.

References $blogid, $itemid, $manager, _error(), blogger_specialTags(), getBlogIDFromItemID(), iso8601_encode(), and removeBreaks().

Referenced by f_blogger_getPost().

_getRecentItemsBlogger ( blogid,
username,
password,
amount 
)

blogger_extractCategory ( body  ) 

Definition at line 377 of file api_blogger.inc.php.

References blogger_matchTag().

Referenced by f_blogger_editPost(), and f_blogger_newPost().

blogger_extractTitle ( body  ) 

Definition at line 373 of file api_blogger.inc.php.

References blogger_matchTag().

Referenced by f_blogger_editPost(), and f_blogger_newPost().

blogger_matchTag ( tag,
body 
)

Definition at line 381 of file api_blogger.inc.php.

Referenced by blogger_extractCategory(), and blogger_extractTitle().

blogger_removeSpecialTags ( body  ) 

Definition at line 388 of file api_blogger.inc.php.

Referenced by f_blogger_editPost(), and f_blogger_newPost().

blogger_specialTags ( item  ) 

Definition at line 394 of file api_blogger.inc.php.

Referenced by _getItemBlogger(), and _getRecentItemsBlogger().

f_blogger_deletePost ( m  ) 

Definition at line 176 of file api_blogger.inc.php.

References _deleteItem(), and _getScalar().

f_blogger_editPost ( m  ) 

f_blogger_getPost ( m  ) 

Definition at line 154 of file api_blogger.inc.php.

References _getItemBlogger(), and _getScalar().

f_blogger_getRecentPosts ( m  ) 

Definition at line 132 of file api_blogger.inc.php.

References $amount, $blogid, _getRecentItemsBlogger(), and _getScalar().

f_blogger_getTemplate ( m  ) 

Definition at line 197 of file api_blogger.inc.php.

References $blogid, _getScalar(), and _getSkinPart().

f_blogger_getUserInfo ( m  ) 

Definition at line 259 of file api_blogger.inc.php.

References _getScalar(), and _getUserInfo().

f_blogger_getUsersBlogs ( m  ) 

Definition at line 112 of file api_blogger.inc.php.

References _getScalar(), and _getUsersBlogs().

f_blogger_newPost ( m  ) 

f_blogger_setTemplate ( m  ) 

Definition at line 229 of file api_blogger.inc.php.

References $blogid, _getScalar(), and _setSkinPart().


Variable Documentation

$f_blogger_deletePost_doc = "Deletes an item"

Definition at line 175 of file api_blogger.inc.php.

$f_blogger_deletePost_sig

Initial value:

 array(array(
                        // return type
                        $xmlrpcBoolean, // boolean (ok or not ok)

                        // params
                        $xmlrpcString,  // appkey (ignored)
                        $xmlrpcString,  // postid
                        $xmlrpcString,  // username
                        $xmlrpcString,  // password
                        $xmlrpcBoolean, // publish (ignored)
                ))

Definition at line 164 of file api_blogger.inc.php.

$f_blogger_editPost_doc = "Edits an item of a blog"

Definition at line 66 of file api_blogger.inc.php.

$f_blogger_editPost_sig

Initial value:

 array(array(
                        // return type
                        $xmlrpcBoolean, // true or false

                        // params:
                        $xmlrpcString,  // appkey (ignored)
                        $xmlrpcString,  // postid
                        $xmlrpcString,  // username
                        $xmlrpcString,  // password
                        $xmlrpcString,  // content
                        $xmlrpcBoolean, // publish boolean (only considered when dealing with a draft)

                ))

Definition at line 53 of file api_blogger.inc.php.

$f_blogger_getPost_doc = "Returns an item (only the item body!)"

Definition at line 153 of file api_blogger.inc.php.

$f_blogger_getPost_sig

Initial value:

 array(array(
                        // return type
                        $xmlrpcStruct,  // A struct representing the item

                        // params
                        $xmlrpcString,  // appkey (ignored)
                        $xmlrpcString,  // postid
                        $xmlrpcString,  // username
                        $xmlrpcString,  // password
                ))

Definition at line 143 of file api_blogger.inc.php.

$f_blogger_getRecentPosts_doc = "Returns a maximum of 20 recent items"

Definition at line 131 of file api_blogger.inc.php.

$f_blogger_getRecentPosts_sig

Initial value:

 array(array(
                        // return type
                        $xmlrpcArray,   // array of strucs (representing items)

                        // params
                        $xmlrpcString,  // appkey (ignored)
                        $xmlrpcString,  // blogid
                        $xmlrpcString,  // username
                        $xmlrpcString,  // password
                        $xmlrpcInt,     // amount of items to return (max = 20)
                ))

Definition at line 120 of file api_blogger.inc.php.

$f_blogger_getTemplate_doc = "Returns the required part of the default skin for the given blog"

Definition at line 196 of file api_blogger.inc.php.

$f_blogger_getTemplate_sig

Initial value:

 array(array(
                        // return type
                        $xmlrpcString,  // the template

                        // params
                        $xmlrpcString,  // appkey (ignored)
                        $xmlrpcString,  // blogid
                        $xmlrpcString,  // username
                        $xmlrpcString,  // password
                        $xmlrpcString,  // type of template (main/archiveIndex)
                                ))

Definition at line 185 of file api_blogger.inc.php.

$f_blogger_getUserInfo_doc = "Returns info on the user"

Definition at line 258 of file api_blogger.inc.php.

$f_blogger_getUserInfo_sig

Initial value:

 array(array(
                        // return type
                        $xmlrpcStruct,  // Struct

                        // params
                        $xmlrpcString,  // appkey (ignored)
                        $xmlrpcString,  // username
                        $xmlrpcString,  // password
                        ))

Definition at line 249 of file api_blogger.inc.php.

$f_blogger_getUsersBlogs_doc = "Returns a list of all the blogs where the given member is on the team"

Definition at line 111 of file api_blogger.inc.php.

$f_blogger_getUsersBlogs_sig

Initial value:

 array(array(
                        // return type
                        $xmlrpcArray,   // array containing structs containing blog info

                        // params:
                        $xmlrpcString,  // appkey (ignored)
                        $xmlrpcString,  // username
                        $xmlrpcString,  // password
                ))

Definition at line 102 of file api_blogger.inc.php.

$f_blogger_newPost_doc = "Adds a new item to the given blog. Adds it as a draft when publish is false"

Definition at line 37 of file api_blogger.inc.php.

$f_blogger_newPost_sig

Initial value:

 array(array(
                        // return type
                        $xmlrpcString,  // itemid of the new item

                        // params:
                        $xmlrpcString,  // appkey (ignored)
                        $xmlrpcString,  // blogid
                        $xmlrpcString,  // username
                        $xmlrpcString,  // password
                        $xmlrpcString,  // content
                        $xmlrpcBoolean, // publish boolean (set to false to create draft)

                ))
This file contains definitions for the methods in the Blogger API

http://nucleuscms.org/license.txt GNU General Public License Copyright (C) 2002-2007 The Nucleus Group

Version:
Id
api_blogger.inc.php 1119 2007-02-04 06:24:28Z kimitake
NucleusJP
api_blogger.inc.php,v 1.6 2007/02/04 06:28:46 kimitake Exp

Definition at line 24 of file api_blogger.inc.php.

$f_blogger_setTemplate_doc = "Changes a part of the default skin for the selected blog"

Definition at line 228 of file api_blogger.inc.php.

$f_blogger_setTemplate_sig

Initial value:

 array(array(
                        // return type
                        $xmlrpcBoolean, // OK or not OK

                        // params
                        $xmlrpcString,  // appkey (ignored)
                        $xmlrpcString,  // blogid
                        $xmlrpcString,  // username
                        $xmlrpcString,  // password
                        $xmlrpcString,  // template contents
                        $xmlrpcString,  // type of template (main/archiveIndex)
                        ))

Definition at line 216 of file api_blogger.inc.php.

$functionDefs

Definition at line 402 of file api_blogger.inc.php.



Generated on Wed Jun 25 17:25:59 2008 by  doxygen 1.5.5