!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.12 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g. PHP/5.2.4-2ubuntu5.12 

uname -a: Linux forum.circlefusion.com 2.6.24-19-server #1 SMP Wed Jun 18 15:18:00 UTC 2008 i686 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/home/doku/axrepos/axess/old/wiki/lib/plugins/discussion/syntax/   drwxrwxr-x
Free 11.46 GB of 97.11 GB (11.81%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     threads.php (5.28 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Discussion Plugin, threads component: displays a list of recently active discussions
 * 
 * @license  GPL 2 (http://www.gnu.org/licenses/gpl.html)
 * @author   Esther Brunner <wikidesign@gmail.com>
 */

// must be run within Dokuwiki
if(!defined('DOKU_INC')) die();

if (!
defined('DOKU_LF')) define('DOKU_LF'"\n");
if (!
defined('DOKU_TAB')) define('DOKU_TAB'"\t");
if (!
defined('DOKU_PLUGIN')) define('DOKU_PLUGIN'DOKU_INC.'lib/plugins/');

require_once(
DOKU_PLUGIN.'syntax.php');

class 
syntax_plugin_discussion_threads extends DokuWiki_Syntax_Plugin {

    function 
getInfo() {
        return array(
                
'author' => 'Gina Häußge, Michael Klier, Esther Brunner',
                
'email'  => 'dokuwiki@chimeric.de',
                
'date'   => @file_get_contents(DOKU_PLUGIN.'discussion/VERSION'),
                
'name'   => 'Discussion Plugin (threads component)',
                
'desc'   => 'Displays a list of recently active discussions',
                
'url'    => 'http://wiki.splitbrain.org/plugin:discussion',
                );
    }

    function 
getType() { return 'substition'; }
    function 
getPType() { return 'block'; }
    function 
getSort() { return 306; }

    function 
connectTo($mode) {
        
$this->Lexer->addSpecialPattern('\{\{threads>.+?\}\}'$mode'plugin_discussion_threads');
    }

    function 
handle($match$state$pos, &$handler) {
        global 
$ID;

        
$match substr($match10, -2); // strip {{threads> from start and }} from end
        
list($match$flags) = explode('&'$match2);
        
$flags explode('&'$flags);
        list(
$ns$refine) = explode(' '$match2);

        if ((
$ns == '*') || ($ns == ':')) $ns '';
        elseif (
$ns == '.'$ns getNS($ID);
        else 
$ns cleanID($ns);

        return array(
$ns$flags$refine);
    }

    function 
render($mode, &$renderer$data) {
        list(
$ns$flags$refine) = $data;

        if (
$my =& plugin_load('helper''discussion')) $pages $my->getThreads($ns);

        
// use tag refinements?
        
if ($refine) {
            if (
plugin_isdisabled('tag') || (!$tag plugin_load('helper''tag'))) {
                
msg('The Tag Plugin must be installed to use tag refinements.', -1);
            } else {
                
$pages $tag->tagRefine($pages$refine);
            }
        }

        if (!
$pages) {
            if ((
auth_quickaclcheck($ns.':*') >= AUTH_CREATE) && ($mode == 'xhtml')) {
                
$renderer->info['cache'] = false;
                
$renderer->doc .= $this->_newThreadForm($ns);
            }
            return 
true// nothing to display
        


        if (
$mode == 'xhtml') {

            
// prevent caching to ensure content is always fresh
            
$renderer->info['cache'] = false;

            
// show form to start a new discussion thread?
            
$perm_create = (auth_quickaclcheck($ns.':*') >= AUTH_CREATE);
            if (
$perm_create && ($this->getConf('threads_formposition') == 'top'))
                
$renderer->doc .= $this->_newThreadForm($ns);

            
// let Pagelist Plugin do the work for us
            
if (plugin_isdisabled('pagelist')
                    || (!
$pagelist =& plugin_load('helper''pagelist'))) {
                
msg('The Pagelist Plugin must be installed for threads lists to work.', -1);
                return 
false;
            }
            
$pagelist->column['comments'] = true;
            
$pagelist->setFlags($flags);
            
$pagelist->startList();
            foreach (
$pages as $page) {
                
$pagelist->addPage($page);
            }
            
$renderer->doc .= $pagelist->finishList();

            
// show form to start a new discussion thread?
            
if ($perm_create && ($this->getConf('threads_formposition') == 'bottom'))
                
$renderer->doc .= $this->_newThreadForm($ns);

            return 
true;

            
// for metadata renderer
        
} elseif ($mode == 'metadata') {
            foreach (
$pages as $page) {
                
$renderer->meta['relation']['references'][$page['id']] = true;
            }

            return 
true;
        }
        return 
false;
    }

    
/* ---------- (X)HTML Output Functions ---------- */

    /**
     * Show the form to start a new discussion thread
     */
    
function _newThreadForm($ns) {
        global 
$ID;
        global 
$lang;

        return 
'<div class="newthread_form">'.DOKU_LF.
            
'<form id="discussion__newthread_form"  method="post" action="'.script().'" accept-charset="'.$lang['encoding'].'">'.DOKU_LF.
            
DOKU_TAB.'<fieldset>'.DOKU_LF.
            
DOKU_TAB.DOKU_TAB.'<legend> '.$this->getLang('newthread').': </legend>'.DOKU_LF.
            
DOKU_TAB.DOKU_TAB.'<input type="hidden" name="id" value="'.$ID.'" />'.DOKU_LF.
            
DOKU_TAB.DOKU_TAB.'<input type="hidden" name="do" value="newthread" />'.DOKU_LF.
            
DOKU_TAB.DOKU_TAB.'<input type="hidden" name="ns" value="'.$ns.'" />'.DOKU_LF.
            
DOKU_TAB.DOKU_TAB.'<input class="edit" type="text" name="title" id="discussion__newthread_title" size="40" tabindex="1" />'.DOKU_LF.
            
DOKU_TAB.DOKU_TAB.'<input class="button" type="submit" value="'.$lang['btn_create'].'" tabindex="2" />'.DOKU_LF.
            
DOKU_TAB.'</fieldset>'.DOKU_LF.
            
'</form>'.DOKU_LF.
            
'</div>'.DOKU_LF;
    }
}
// vim:ts=4:sw=4:et:enc=utf-8:

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0069 ]--