FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
latepoint
/
lib
/
misc
Edit File: router.php
<?php // legacy router, now it's moved to PRO, we had to leave this one be to not cause issues with third party addons namespace LatePoint\Cerber; if ( ! class_exists( 'LatePoint\Cerber\Router' ) ) { class Router { public static function init_addon() { if ( class_exists( 'LatePoint\Cerber\RouterPro' ) ) { RouterPro::init_addon(); } } } }
Save
Back