010009.php
7 months ago
010300.php
7 months ago
010306.php
7 months ago
010309.php
7 months ago
010402.php
7 months ago
010501.php
3 months ago
010802.php
7 months ago
010803.php
3 months ago
index.php
3 years ago
010803.php
28 lines
| 1 | <?php |
| 2 | // Exit if accessed directly |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | exit; |
| 5 | } |
| 6 | |
| 7 | /** |
| 8 | * Updates for altering the table used to store statistics data. |
| 9 | * Adds new columns and renames existing ones in order to add support for the new social buttons. |
| 10 | * |
| 11 | */ |
| 12 | class WIOUpdate010803 extends Wbcr_Factory600_Update { |
| 13 | |
| 14 | /** |
| 15 | * Handles the installation process for the plugin, including cleanup of |
| 16 | * old options and setting new configurations. |
| 17 | * |
| 18 | * @return void |
| 19 | */ |
| 20 | public function install() { |
| 21 | |
| 22 | WRIO_Plugin::app()->updatePopulateOption( 'image_optimization_server', 'server_2' ); |
| 23 | WRIO_Plugin::app()->updatePopulateOption( 'server_2_quota_limit', 1000 ); |
| 24 | |
| 25 | WRIO_Plugin::app()->logger->info( 'Plugin migration to 1.8.3 was successful!' ); |
| 26 | } |
| 27 | } |
| 28 |