芝麻web文件管理V1.00
编辑当前文件:/home/fambnfli/www/tr/wp-content/plugins/duplicator/src/Core/Notifications/NoticeBar.php
$value) { if (strlen((string) $value) == 0) { continue; } $utm_content .= ucfirst($key) . ' ' . $value . ' '; } $utm_content = trim($utm_content); TplMng::getInstance()->render('/parts/notice-bar', array( 'utm_content' => $utm_content )); } /** * Dismiss notice bar ajax action * * @return void */ public static function dismissNoticeBar() { // Run a security check. check_ajax_referer('duplicator-notice-bar-dismiss', 'nonce'); update_user_meta(get_current_user_id(), self::NOTICE_BAR_DISMISSED_OPT_KEY, true); } /** * Delete related option * * @return bool true on success, false on failure */ public static function deleteOption() { return SnapWP::deleteUserMetaKey(self::NOTICE_BAR_DISMISSED_OPT_KEY); } }