Submit
Path:
~
/
home
/
getwphos
/
www
/
almajd14
/
wp-content
/
plugins
/
qode-optimizer
/
classes
/
File Content:
class-qode-optimizer-output.php
<?php /** * Implementation of output procedures * * @package Qode */ if ( ! defined( 'ABSPATH' ) ) { // Exit if accessed directly. exit; } class Qode_Optimizer_Output { /** * Params * * @var array $params */ public $params; /** * Messages * * @var array $messages */ public $messages; /** * Qode_Optimizer_Output constructor */ public function __construct() { $this->messages = array(); $this->params = array(); } /** * Set param * * @param string $key * @param mixed $value */ public function set_param( $key, $value ) { $this->params[ $key ] = $value; } /** * Get param * * @param string $key * * @@return mixed|bool */ public function get_param( $key ) { return isset( $this->params[ $key ] ) ? $this->params[ $key ] : false; } /** * Add new message * * @param string $message */ public function add_message( $message ) { $this->messages[] = $message; } /** * Display string messages * * @return string */ public function show_messages_as_string() { $output = ''; foreach ( $this->messages as $message ) { $output .= $message . ' '; } return $output; } /** * Display HTML messages * * @return string */ public function show_messages_as_html() { $output = ''; foreach ( $this->messages as $message ) { $output .= '<span>' . $message . '</span>'; } return $output; } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
class-qode-optimizer-backup.php
20426 bytes
0644
class-qode-optimizer-bulk.php
31406 bytes
0644
class-qode-optimizer-db.php
8092 bytes
0644
class-qode-optimizer-filesystem.php
12549 bytes
0644
class-qode-optimizer-general.php
2952 bytes
0644
class-qode-optimizer-gif.php
18281 bytes
0644
class-qode-optimizer-image-factory.php
1458 bytes
0644
class-qode-optimizer-image.php
121107 bytes
0644
class-qode-optimizer-images.php
11898 bytes
0644
class-qode-optimizer-issue.php
9181 bytes
0644
class-qode-optimizer-jpeg.php
20101 bytes
0644
class-qode-optimizer-log.php
6121 bytes
0644
class-qode-optimizer-media.php
46101 bytes
0644
class-qode-optimizer-options.php
19112 bytes
0644
class-qode-optimizer-output.php
1413 bytes
0644
class-qode-optimizer-parser.php
19798 bytes
0644
class-qode-optimizer-png.php
25397 bytes
0644
class-qode-optimizer-support.php
22006 bytes
0644
class-qode-optimizer-svg.php
5759 bytes
0644
class-qode-optimizer-utility.php
27269 bytes
0644
class-qode-optimizer-web-server-apache.php
1144 bytes
0644
class-qode-optimizer-web-server-factory.php
1225 bytes
0644
class-qode-optimizer-web-server-nginx.php
631 bytes
0644
class-qode-optimizer-web-server.php
4147 bytes
0644
N4ST4R_ID | Naxtarrr