15 lines
230 B
PHP
15 lines
230 B
PHP
<?php
|
|
/**
|
|
* Loads the setup wizard.
|
|
*
|
|
* @package Polylang
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Don't access directly
|
|
}
|
|
|
|
if ( $polylang instanceof PLL_Admin_Base ) {
|
|
$polylang->wizard = new PLL_Wizard( $polylang );
|
|
}
|