This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php $cookieScriptId = '[SITE_ID]'; ?> | |
<?php if (!isset($_SERVER['PANTHEON_ENVIRONMENT']) || ($_SERVER['PANTHEON_ENVIRONMENT'] !== 'live')) : ?> | |
<?php $cookieScriptId .= '-test'; ?> | |
<?php endif; ?> | |
<!-- OneTrust Cookies Consent Notice start --> | |
<script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" charset="UTF-8" data-domain-script="<?php echo $cookieScriptId; ?>"></script> | |
<script> | |
function OptanonWrapper() { } | |
</script> | |
<!-- OneTrust Cookies Consent Notice end --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "topfloor/project-domain", | |
"description": "", | |
"minimum-stability": "stable", | |
"license": "proprietary", | |
"authors": [ | |
{ | |
"name": "Developer Name", | |
"email": "[email protected]" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class AssetGathererComponent extends Component { | |
public $settings = array( | |
'mainJs' => 'main', | |
'mainCss' => 'main', | |
'requiredJs' => array(), | |
'requiredCss' => array(), | |
'controllersPath' => 'controllers', | |
'includeNamespaceJs' => '/auto_asset/js/namespace', | |
'includeScriptJs' => '/auto_asset/js/script.min', |