66 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| namespace W3TC;
 | |
| 
 | |
| 
 | |
| 
 | |
| class Extension_Swarmify_Plugin_Admin {
 | |
| 	/**
 | |
| 	 * @param unknown $extensions
 | |
| 	 * @param Config  $config
 | |
| 	 * @return mixed
 | |
| 	 */
 | |
| 	static public function w3tc_extensions( $extensions, $config ) {
 | |
| 		$extensions['swarmify'] = array (
 | |
| 			'name' => 'Swarmify',
 | |
| 			'author' => 'W3 EDGE',
 | |
| 			'description' =>  __( 'Optimize your video performance by enabling the Swarmify SmartVideo™ solution.', 'w3-total-cache' ),
 | |
| 			'author_uri' => 'https://www.w3-edge.com/',
 | |
| 			'extension_uri' => 'https://www.w3-edge.com/',
 | |
| 			'extension_id' => 'swarmify',
 | |
| 			'settings_exists' => true,
 | |
| 			'version' => '1.0',
 | |
| 			'enabled' => true,
 | |
| 			'requirements' => '',
 | |
| 			'active_frontend_own_control' => true,
 | |
| 			'path' => 'w3-total-cache/Extension_Swarmify_Plugin.php'
 | |
| 		);
 | |
| 
 | |
| 		return $extensions;
 | |
| 	}
 | |
| 
 | |
| 
 | |
| 
 | |
| 	function run() {
 | |
| 		add_action( 'w3tc_config_save', array( $this, 'w3tc_config_save' ), 10, 1 );
 | |
| 
 | |
| 		add_action( 'w3tc_extension_page_swarmify',
 | |
| 			array( $this, 'w3tc_extension_page_swarmify' ) );
 | |
| 
 | |
| 		add_filter( 'w3tc_admin_actions', array( $this, 'w3tc_admin_actions' ) );
 | |
| 	}
 | |
| 
 | |
| 
 | |
| 
 | |
| 	public function w3tc_extension_page_swarmify() {
 | |
| 		$v = new Extension_Swarmify_Page();
 | |
| 		$v->render_content();
 | |
| 	}
 | |
| 
 | |
| 
 | |
| 
 | |
| 	public function w3tc_admin_actions( $handlers ) {
 | |
| 		$handlers['swarmify'] = 'Extension_Swarmify_AdminActions';
 | |
| 		return $handlers;
 | |
| 	}
 | |
| 
 | |
| 
 | |
| 
 | |
| 	public function w3tc_config_save( $config ) {
 | |
| 		// frontend activity
 | |
| 		$api_key = $config->get_string( array( 'swarmify', 'api_key' ) );
 | |
| 		$is_filled = !empty( $api_key );
 | |
| 
 | |
| 		$config->set_extension_active_frontend( 'swarmify', $is_filled );
 | |
| 	}
 | |
| }
 |