| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/KnowledgeBase/wp-content/plugins/wpmu-dev-seo/includes/ |
Upload File : |
<?php
/**
* Initializes plugin front-end behavior
*
* @package Smartcrawl
*/
namespace SmartCrawl;
use SmartCrawl\Controllers\Controller;
/**
* Frontend init class.
*
* TODO: get rid of this class
*/
class Front extends Controller {
use Singleton;
/**
* Initializing method.
*/
protected function init() {
if ( defined( '\SMARTCRAWL_EXPERIMENTAL_FEATURES_ON' ) && \SMARTCRAWL_EXPERIMENTAL_FEATURES_ON ) {
add_action( 'init', array( '\SmartCrawl\Sitemaps\Video\Sitemap', 'serve' ) );
if ( ! defined( '\SMARTCRAWL_VIDEO_SITEMAP_ALLOW_API_CALLS' ) ) {
define( 'SMARTCRAWL_VIDEO_SITEMAP_ALLOW_API_CALLS', true );
}
}
}
}