Example #1
0
/**
 * @return void
 * @param Array $plugin
 * @param Int $id
 * @desc Produces a listing of blogs available in this account, based on the array passed to it (uses Blogger API)
 */
function livejournal_listing($plugin, $id)
{
    global $config, $livejournal_host, $livejournal_path;
    return mt_listing($id, $config['plugins_label'], $plugin['username'], $plugin['password'], $livejournal_host, $livejournal_path, 'livejournal');
}
Example #2
0
/**
 * @return void
 * @param Array $plugin
 * @param Int $id
 * @desc Produces a listing of blogs available in this account, based on the array passed to it (uses MetaWeblogAPI)
 */
function movabletype_listing($plugin, $id)
{
    global $config;
    return mt_listing($id, $config['plugins_label'], $plugin['username'], $plugin['password'], $plugin['host'], $plugin['path'], 'movabletype');
}
Example #3
0
/**
 * @return void
 * @param Array $plugin
 * @param Int $id
 * @desc Produces a listing of blogs available in this account, based on the array passed to it (uses MetaWeblogAPI)
 */
function wordpress_listing($plugin, $id)
{
    global $config;
    return mt_listing($id, $config['plugins_label'], $plugin['username'], $plugin['password'], $plugin['host'], $plugin['path'], 'wordpress');
}