uawdijnntqw1x1x1
IP : 3.133.129.118
Hostname : c17w.hoster.ru
Kernel : Linux c17w.hoster.ru 3.10.0 #1 SMP Tue Jan 25 12:49:12 MSK 2022 x86_64
Disable Function : dl,shell_exec,exec,system,passthru,popen,proc_open,proc_nice,proc_get_status,proc_close,proc_terminate,posix_mkfifo,chown,chgrp,show_source,opcache_reset,opcache_get_configuration,opcache_get_status
OS : Linux
PATH:
/
home
/
srv221441
/
kso-don.ru
/
wp-content
/
plugins
/
presto-player
/
.
/
.
/
inc
/
.
/
Services
/
AdminNotice.php
/
/
<?php namespace PrestoPlayer\Services; class AdminNotice { const NOTICE_FIELD = 'presto_player_temp_admin_notice'; public static function displayAdminNotice() { $option = get_option( self::NOTICE_FIELD ); $message = isset( $option['message'] ) ? $option['message'] : false; $noticeLevel = ! empty( $option['notice-level'] ) ? $option['notice-level'] : 'notice-error'; if ( $message ) { echo "<div class='notice {$noticeLevel} is-dismissible'><p>{$message}</p></div>"; delete_option( self::NOTICE_FIELD ); } } public static function displayError( $message ) { self::updateOption( $message, 'notice-error' ); } public static function displayWarning( $message ) { self::updateOption( $message, 'notice-warning' ); } public static function displayInfo( $message ) { self::updateOption( $message, 'notice-info' ); } public static function displaySuccess( $message ) { self::updateOption( $message, 'notice-success' ); } protected static function updateOption( $message, $noticeLevel ) { update_option( self::NOTICE_FIELD, array( 'message' => $message, 'notice-level' => $noticeLevel, ) ); } }
/home/srv221441/kso-don.ru/wp-content/plugins/presto-player/././inc/./Services/AdminNotice.php