Go to the source code of this file.
_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 | |||
) |
Returns a list of recent items
Definition at line 270 of file api_blogger.inc.php.
References $amount, $blogid, $query, _error(), blogger_specialTags(), BLOG::existsID(), iso8601_encode(), mysql_fetch_assoc(), removeBreaks(), sql_query(), and sql_table().
Referenced by f_blogger_getRecentPosts().
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 | ) |
f_blogger_editPost | ( | $ | m | ) |
Definition at line 67 of file api_blogger.inc.php.
References $blogid, $catid, $itemid, $manager, _edititem(), _error(), _getScalar(), blogger_extractCategory(), blogger_extractTitle(), blogger_removeSpecialTags(), and getBlogIDFromItemID().
f_blogger_getPost | ( | $ | m | ) |
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 | ) |
f_blogger_getUsersBlogs | ( | $ | m | ) |
f_blogger_newPost | ( | $ | m | ) |
Definition at line 38 of file api_blogger.inc.php.
References $blogid, _addItem(), _getScalar(), blogger_extractCategory(), blogger_extractTitle(), and blogger_removeSpecialTags().
f_blogger_setTemplate | ( | $ | m | ) |
Definition at line 229 of file api_blogger.inc.php.
References $blogid, _getScalar(), and _setSkinPart().
$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) ))
http://nucleuscms.org/license.txt GNU General Public License Copyright (C) 2002-2007 The Nucleus Group
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.