mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-22 15:51:08 +00:00
62 lines
3.1 KiB
PHP
62 lines
3.1 KiB
PHP
<?php
|
|
/**
|
|
* Copyright (C) 2014-2017 ServMask Inc.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
|
|
* ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
|
|
* ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
|
|
* ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
|
|
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
|
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
|
*/
|
|
|
|
class Ai1wm_Status {
|
|
|
|
public static function error( $message, $title = null ) {
|
|
self::log( array( 'type' => 'error', 'message' => $message, 'title' => $title ) );
|
|
}
|
|
|
|
public static function info( $message, $title = null ) {
|
|
self::log( array( 'type' => 'info', 'message' => $message, 'title' => $title ) );
|
|
}
|
|
|
|
public static function download( $message, $title = null ) {
|
|
self::log( array( 'type' => 'download', 'message' => $message, 'title' => $title ) );
|
|
}
|
|
|
|
public static function confirm( $message, $title = null ) {
|
|
self::log( array( 'type' => 'confirm', 'message' => $message, 'title' => $title ) );
|
|
}
|
|
|
|
public static function done( $message, $title = null ) {
|
|
self::log( array( 'type' => 'done', 'message' => $message, 'title' => $title ) );
|
|
}
|
|
|
|
public static function blogs( $message, $title = null ) {
|
|
self::log( array( 'type' => 'blogs', 'message' => $message, 'title' => $title ) );
|
|
}
|
|
|
|
public static function progress( $percent, $title = null ) {
|
|
self::log( array( 'type' => 'progress', 'percent' => $percent, 'title' => $title ) );
|
|
}
|
|
|
|
public static function log( $data = array() ) {
|
|
if ( isset( $_REQUEST['ai1wm_manual_export'] ) || isset( $_REQUEST['ai1wm_manual_import'] ) || isset( $_REQUEST['ai1wm_manual_restore'] ) ) {
|
|
update_option( AI1WM_STATUS, $data );
|
|
}
|
|
}
|
|
}
|