!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/kkart-admin/src/Notes/   drwxr-xr-x
Free 293.24 GB of 429.69 GB (68.24%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     HomeScreenFeedback.php (2.08 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Kkart Admin: Help us improve the Kkart Home screen
 *
 * Adds a note to ask the client to provide feedback about the home screen.
 */

namespace Automattic\Kkart\Admin\Notes;

defined'ABSPATH' ) || exit;

/**
 * Home_Screen_Feedback.
 */
class HomeScreenFeedback {
    
/**
     * Note traits.
     */
    
use NoteTraits;

    
/**
     * Name of the note for use in the database.
     */
    
const NOTE_NAME 'kkart-admin-home-screen-feedback';

    const 
HOMESCREEN_ACCESSED_OPTION_NAME 'kkart_admin_note_home_screen_feedback_homescreen_accessed';

    
/**
     * Constructor.
     */
    
public function __construct() {
        
add_action'init', array( $this'on_init' ) );
    }

    
/**
     * Watch for the homescreen being accessed (by checking to see if it's
     * enabled) and set a time stamp for when it is.
     */
    
public function on_init() {
        
// If the accessed option is already set, return early.
        
if ( false !== get_optionself::HOMESCREEN_ACCESSED_OPTION_NAME ) ) {
            return;
        }

        
// Set the current time stamp, as the home screen is the default
        // experience.
        
update_optionself::HOMESCREEN_ACCESSED_OPTION_NAMEtime() );
    }

    
/**
     * Get the note.
     *
     * @return Note
     */
    
public static function get_note() {
        
// Homescreen first accessed at least 12 days ago.
        
$homescreen_accessed_time get_option(
            
self::HOMESCREEN_ACCESSED_OPTION_NAME
        
);
        if ( ! 
$homescreen_accessed_time ) {
            return;
        }
        if ( 
time() - $homescreen_accessed_time 12 DAY_IN_SECONDS ) {
            return;
        }

        
$note = new Note();
        
$note->set_title__'Help us improve the Kkart Home screen''kkart' ) );
        
$note->set_content__'We\'d love your input to shape the future of the Kkart Home screen together. Feel free to share any feedback, ideas or suggestions that you have.''kkart' ) );
        
$note->set_typeNote::E_KKART_ADMIN_NOTE_INFORMATIONAL );
        
$note->set_nameself::NOTE_NAME );
        
$note->set_content_data( (object) array() );
        
$note->set_source'kkart-admin' );
        
$note->add_action(
            
'home-screen-feedback-share-feedback',
            
__'Share feedback''kkart' ),
            
'https://automattic.survey.fm/home-screen-survey'
        
);

        return 
$note;
    }
}

:: 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.0973 ]--