| @@ -7,9 +7,9 @@ | ||
| 7 | 7 | */ |
| 8 | 8 | class PLL_Settings_WPML extends PLL_Settings_Module { |
| 9 | 9 | |
| 10 | 10 | /** |
| 11 | - * Constructor | |
| 11 | + * constructor | |
| 12 | 12 | * |
| 13 | 13 | * @since 1.8 |
| 14 | 14 | * |
| 15 | 15 | * @param object $polylang polylang object |
| @@ -14,20 +14,17 @@ | ||
| 14 | 14 | * |
| 15 | 15 | * @param object $polylang polylang object |
| 16 | 16 | */ |
| 17 | 17 | public function __construct( &$polylang ) { |
| 18 | - parent::__construct( | |
| 19 | - $polylang, | |
| 20 | - array( | |
| 21 | - 'module' => 'wpml', | |
| 22 | - 'title' => __( 'WPML compatibility', 'polylang' ), | |
| 23 | - 'description' => __( 'Polylang\'s WPML compatibility mode', 'polylang' ), | |
| 24 | - ) | |
| 25 | - ); | |
| 18 | + parent::__construct( $polylang, array( | |
| 19 | + 'module' => 'wpml', | |
| 20 | + 'title' => __( 'WPML Compatibility', 'polylang' ), | |
| 21 | + 'description' => __( 'WPML compatibility mode of Polylang', 'polylang' ), | |
| 22 | + ) ); | |
| 26 | 23 | } |
| 27 | 24 | |
| 28 | 25 | /** |
| 29 | - * Tells if the module is active | |
| 26 | + * tells if the module is active | |
| 30 | 27 | * |
| 31 | 28 | * @since 1.8 |
| 32 | 29 | * |
| 33 | 30 | * @return bool |