wenpai.org/wp-content/plugins/glotpress/gp-includes/routes/index.php
2024-06-21 23:57:39 +08:00

19 lines
306 B
PHP

<?php
/**
* Routes: GP_Route_Index class
*
* @package GlotPress
* @subpackage Routes
* @since 1.0.0
*/
/**
* Core class used to implement the index route.
*
* @since 1.0.0
*/
class GP_Route_Index extends GP_Route_Main {
public function index() {
$this->redirect( gp_url_project( '' ) );
}
}