Add upstream plugins

Signed-off-by: Adrian Nöthlich <git@promasu.tech>
This commit is contained in:
2019-10-25 22:42:20 +02:00
parent 5d3c2ec184
commit 290736650a
1186 changed files with 302577 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
<?php
/**
* The concrete command that disabel gzip.
*
* @author Time.ly Network Inc.
* @since 2.0
*
* @package AI1EC
* @subpackage AI1EC.Command
*/
class Ai1ec_Command_Disable_Gzip extends Ai1ec_Command {
/* (non-PHPdoc)
* @see Ai1ec_Command::is_this_to_execute()
*/
public function is_this_to_execute() {
if ( isset( $_GET['ai1ec_disable_gzip_compression'] ) ) {
check_admin_referer( 'ai1ec_disable_gzip_compression' );
return true;
}
return false;
}
/* (non-PHPdoc)
* @see Ai1ec_Command::do_execute()
*/
public function do_execute() {
$this->_registry->get( 'model.settings' )
->set( 'disable_gzip_compression', true );
return array(
'url' => ai1ec_admin_url( 'edit.php' ),
'query_args' => array(
'post_type' => 'ai1ec_event',
'page' => 'all-in-one-event-calendar-settings',
),
);
}
/* (non-PHPdoc)
* @see Ai1ec_Command::set_render_strategy()
*/
public function set_render_strategy( Ai1ec_Request_Parser $request ) {
$this->_render_strategy = $this->_registry->get(
'http.response.render.strategy.redirect'
);
}
}