File: /var/www/Gosurya/WP2/wp-content/plugins/akeebabackupwp/helpers/templates/wp/php/head_wp.php
<?php
/**
* @package solo
* @copyright Copyright (c)2014-2021 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU General Public License version 3, or later
*/
defined('WPINC') or die;
use Awf\Document\Document;
use Awf\Uri\Uri;
/** @var Document $this */
// Script options
$prettyPrint = (defined('AKEEBADEBUG') && AKEEBADEBUG && defined('JSON_PRETTY_PRINT') ? JSON_PRETTY_PRINT : false);
$jsonOptions = json_encode($this->getScriptOptions(), $prettyPrint);
$jsonOptions = $jsonOptions ? $jsonOptions : '{}';
echo "\t<script type=\"application/json\" class=\"akeeba-script-options new\">$jsonOptions</script>\n";
// CSS files
foreach ($this->getStyles() as $url => $params)
{
AkeebaBackupWP::enqueueStyle($url);
}
// Inline style
foreach ($this->getStyleDeclarations() as $type => $content)
{
echo "\t<style type=\"$type\">\n$content\n</style>";
}
// JavaScript files
foreach ($this->getScripts() as $url => $params)
{
AkeebaBackupWP::enqueueScript($url);
}
// Inline script declarations
foreach ($this->getScriptDeclarations() as $type => $content)
{
AkeebaBackupWP::enqueueInlineScript($content);
}