コード例 #1
0
function plugin_topicpath_convert()
{
    global $topicpath;
    if (isset($topicpath) && $topicpath == false) {
        return '';
    }
    return '<div id ="topicpath">' . plugin_topicpath_inline() . '</div>';
}
コード例 #2
0
ファイル: topicpath.inc.php プロジェクト: logue/pukiwiki_adv
function plugin_topicpath_convert()
{
    global $topicpath, $pkwk_dtd;
    if (isset($topicpath) && $topicpath == false) {
        return '';
    }
    $ret = plugin_topicpath_inline();
    return !empty($ret) ? '<nav class="topicpath">' . $ret . '</nav>' . "\n" : null;
}
コード例 #3
0
    if (SKIN_DEFAULT_DISABLE_TOPICPATH) {
        ?>
   <a href="<?php 
        echo $link['reload'];
        ?>
"><span class="small"><?php 
        echo $link['reload'];
        ?>
</span></a>
 <?php 
    } else {
        ?>
   <span class="small topicpath">
   <?php 
        require_once PLUGIN_DIR . 'topicpath.inc.php';
        echo plugin_topicpath_inline();
        ?>
   </span>
 <?php 
    }
}
?>

</div>

<div id="navigator" class="cfx">
<?php 
if (PKWK_SKIN_SHOW_NAVBAR) {
    function _navigator($key, $value = '', $javascript = '')
    {
        $lang =& $GLOBALS['_LANG']['skin'];
コード例 #4
0
ファイル: topicpath.inc.php プロジェクト: nsmr0604/pukiwiki
function plugin_topicpath_convert()
{
    return '<div>' . plugin_topicpath_inline() . '</div>';
}
コード例 #5
0
ファイル: topicpath.inc.php プロジェクト: lolo3-sight/wiki
function plugin_topicpath_convert()
{
    return '<p id="topicPath">' . plugin_topicpath_inline() . '</p>';
}