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


Viewing file:     action.php (5.58 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * @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.'action.php');

class 
action_plugin_blog extends DokuWiki_Action_Plugin {

    
/**
     * return some info
     */
    
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',
                
'desc'   => 'Brings blog functionality to DokuWiki',
                
'url'    => 'http://wiki.splitbrain.org/plugin:blog',
                );
    }

    
/**
     * register the eventhandlers
     */
    
function register(&$contr) {
        
$contr->register_hook('ACTION_ACT_PREPROCESS',
                
'BEFORE',
                
$this,
                
'handle_act_preprocess',
                array());
    }

    
/**
     * Checks if 'newentry' was given as action, if so we
     * do handle the event our self and no further checking takes place
     */
    
function handle_act_preprocess(&$event$param) {
        if (
$event->data != 'newentry') return; // nothing to do for us
        // we can handle it -> prevent others
        // $event->stopPropagation();
        
$event->preventDefault();    

        
$event->data $this->_handle_newEntry();
    }

    
/**
     * Creates a new entry page
     */
    
function _handle_newEntry() {
        global 
$ID$INFO;

        
$ns    cleanID($_REQUEST['ns']);
        
$title str_replace(':'''$_REQUEST['title']);
        
$ID    $this->_newEntryID($ns$title);
        
$INFO  pageinfo();

        
// check if we are allowed to create this file
        
if ($INFO['perm'] >= AUTH_CREATE) {

            
//check if locked by anyone - if not lock for my self      
            
if ($INFO['locked']) return 'locked';
            else 
lock($ID);

            
// prepare the new thread file with default stuff
            
if (!@file_exists($INFO['filepath'])) {
                global 
$TEXT;

                
$TEXT pageTemplate(array(($ns $ns.':' '').$title));
                if (!
$TEXT) {
                    
$data = array('id' => $ID'ns' => $ns'title' => $title);
                    
$TEXT $this->_pageTemplate($data);
                }
                return 
'preview';
            } else {
                return 
'edit';
            }
        } else {
            return 
'show';
        }
    }

    
/**
     * Adapted version of pageTemplate() function
     */
    
function _pageTemplate($data) {
        global 
$conf$INFO;

        
$id   $data['id'];
        
$user $_SERVER['REMOTE_USER'];
        
$tpl  io_readFile(DOKU_PLUGIN.'blog/_template.txt');

        
// standard replacements
        
$replace = array(
                
'@ID@'   => $id,
                
'@NS@'   => $data['ns'],
                
'@PAGE@' => strtr(noNS($id),'_',' '),
                
'@USER@' => $user,
                
'@NAME@' => $INFO['userinfo']['name'],
                
'@MAIL@' => $INFO['userinfo']['mail'],
                
'@DATE@' => strftime($conf['dformat']),
                );

        
// additional replacements
        
$replace['@TITLE@'] = $data['title'];

        
// tag if tag plugin is available
        
if ((@file_exists(DOKU_PLUGIN.'tag/syntax/tag.php'))
                && (!
plugin_isdisabled('tag'))) {
            
$replace['@TAG@'] = "\n\n{{tag>}}";
        } else {
            
$replace['@TAG@'] = '';
        }

        
// discussion if discussion plugin is available
        
if ((@file_exists(DOKU_PLUGIN.'discussion/syntax/comments.php'))
                && (!
plugin_isdisabled('discussion'))) {
            
$replace['@DISCUSSION@'] = "~~DISCUSSION~~";
        } else {
            
$replace['@DISCUSSION@'] = '';
        }

        
// linkbacks if linkback plugin is available
        
if ((@file_exists(DOKU_PLUGIN.'linkback/syntax.php'))
                && (!
plugin_isdisabled('linkback'))) {
            
$replace['@LINKBACK@'] = "~~LINKBACK~~";
        } else {
            
$replace['@LINKBACK@'] = '';
        }

        
// do the replace
        
$tpl str_replace(array_keys($replace), array_values($replace), $tpl);
        return 
$tpl;
    }

    
/**
     * Returns the ID of a new entry based on its namespace, title and the date prefix
     * 
     * @author  Esther Brunner <wikidesign@gmail.com>
     * @author  Michael Arlt <michael.arlt@sk-chwanstetten.de>
     */
    
function _newEntryID($ns$title) {
        
$dateprefix  $this->getConf('dateprefix');
        if (
substr($dateprefix01) == '<') {
            
// <9?%y1-%y2:%d.%m._   ->  05-06:31.08._ | 06-07:01.09._
            
list($newmonth$dateprefix) = explode('?'substr($dateprefix1));
            if (
intval(strftime("%m")) < intval($newmonth)) {
                
$longyear2 strftime("%Y");
                
$longyear1 $longyear2 1;
            } else {
                
$longyear1 strftime("%Y");
                
$longyear2 $longyear1 1;
            }
            
$shortyear1 substr($longyear12);
            
$shortyear2 substr($longyear22);
            
$dateprefix str_replace(
                    array(
'%Y1''%Y2''%y1''%y2'),
                    array(
$longyear1$longyear2$shortyear1$shortyear2),
                    
$dateprefix
                    
);
        }
        
$pre strftime($dateprefix);
        return (
$ns $ns.':' '').$pre.cleanID($title);
    }
}
// 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.3539 ]--