!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/blog/syntax/   drwxrwxr-x
Free 11.46 GB of 97.11 GB (11.8%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     archive.php (5 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Archive Plugin: displays links to all wiki pages from a given month
 * 
 * @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_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
require_once(
DOKU_PLUGIN.'syntax.php');

/**
 * All DokuWiki plugins to extend the parser/rendering mechanism
 * need to inherit from this class
 */
class syntax_plugin_blog_archive 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 'blog/VERSION'),
                
'name'   => 'Blog Plugin (archive component)',
                
'desc'   => 'Displays a list of wiki pages from a given month',
                
'url'    => 'http://wiki.splitbrain.org/plugin:blog',
                );
    }

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

    function 
connectTo($mode) {
        
$this->Lexer->addSpecialPattern('\{\{archive>.*?\}\}'$mode'plugin_blog_archive');
    }

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

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

        if (!
$rest) {
            
$rest $ns;
            
$ns   '';
        }

        if (
$ns == ''$ns cleanID($this->getConf('namespace'));
        elseif ((
$ns == '*') || ($ns == ':')) $ns '';
        elseif (
$ns == '.'$ns getNS($ID);
        else 
$ns cleanID($ns);

        
// daily archive
        
if (preg_match("/\d{4}-\d{2}-\d{2}/"$rest)) {
            list(
$year$month$day) = explode('-'$rest3);

            
$start  mktime(000$month$day$year);
            
$end    $start 24*60*60;

            
// monthly archive
        
} elseif (preg_match("/\d{4}-\d{2}/"$rest)) {
            list(
$year$month) = explode('-'$rest2);

            
// calculate start and end times
            
$nextmonth   $month 1;
            
$year2       $year;
            if (
$nextmonth 12) {
                
$nextmonth 1;
                
$year2     $year 1;
            }

            
$start  mktime(000$month1$year);
            
$end    mktime(000$nextmonth1$year2);

            
// a whole year
        
} elseif (preg_match("/\d{4}/"$rest)) {
            
$start  mktime(00011$rest);
            
$end    mktime(00011$rest 1);

            
// all entries from that namespace up to now
        
} elseif ($rest == '*') {
            
$start  0;
            
$end    time();

            
// unknown format
        
} else {
            return 
false;
        }

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

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

        
// get the blog entries for our namespace
        
if ($my =& plugin_load('helper''blog')) $entries $my->getBlog($ns);

        
// use tag refinements?
        
if ($refine) {
            if (
plugin_isdisabled('tag') || (!$tag plugin_load('helper''tag'))) {
                
msg($this->getLang('missing_tagplugin'), -1);
            } else {
                
$entries $tag->tagRefine($entries$refine);
            }
        }

        if (!
$entries) return true// nothing to display

        
if ($mode == 'xhtml') {

            
// prevent caching for current month to ensure content is always fresh
            
if (time() < $end$renderer->info['cache'] = false;

            
// let Pagelist Plugin do the work for us
            
if (plugin_isdisabled('pagelist')
                    || (!
$pagelist =& plugin_load('helper''pagelist'))) {
                
msg($this->getLang('missing_pagelistplugin'), -1);
                return 
false;
            }
            
$pagelist->setFlags($flags);
            
$pagelist->startList();
            foreach (
$entries as $entry) {

                
// entry in the right date range?
                
if (($start $entry['date']) || ($entry['date'] >= $end)) continue;

                
$pagelist->addPage($entry);
            }
            
$renderer->doc .= $pagelist->finishList();
            return 
true;

            
// for metadata renderer
        
} elseif ($mode == 'metadata') {
            foreach (
$entries as $entry) {

                
// entry in the right date range?
                
if (($start $entry['date']) || ($entry['date'] >= $end)) continue;

                
$renderer->meta['relation']['references'][$entry['id']] = true;
            }

            return 
true;
        }
        return 
false;
    }
}
// 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.0077 ]--