예제 #1
0
function plogger_get_next_picture_link()
{
    $next_url = plogger_get_next_picture_url();
    if ($next_url) {
        $next_link = '<a accesskey="." href="' . $next_url . '">Next &raquo;</a>';
    } else {
        $next_link = '';
    }
    return $next_link;
}
예제 #2
0
function plogger_get_next_picture_link()
{
    global $config;
    $next_url = plogger_get_next_picture_url();
    if ($next_url) {
        if ($config['embedded'] == 0) {
            $next_link = '<a id="next-button" accesskey="." href="' . $next_url . '">' . plog_tr('Next') . ' &raquo;</a>';
        } else {
            $next_link = '<a id="next-button" accesskey="." href="' . $next_url . '">' . plog_tr('Next') . ' &raquo;</a>';
        }
    } else {
        $next_link = '';
    }
    return $next_link;
}