File "constants.php"
Full path: /home/kosmetik/public_html/wp-content/plugins/wp-rocket/inc/constants.php
File
size: 301 B
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
defined('ABSPATH') || exit;
function rocket_has_constant($constant_name)
{
return defined($constant_name);
}
function rocket_get_constant($constant_name, $default = null)
{
if (!rocket_has_constant($constant_name)) {
return $default;
}
return constant($constant_name);
}