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 | |
namespace craft\contentmigrations; | |
use Craft; | |
use craft\base\FieldInterface; | |
use craft\db\Migration; | |
use craft\db\Table; | |
use craft\helpers\Console; | |
use Throwable; |
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
% for site in craft.app.sites.getAllSites() %} | |
{% if site.handle != 'main' %} | |
{% set schoolNetworkSettings = craft.globalSets() | |
.handle('networkSettings') | |
.siteId(site.id) | |
.with(['networkLogo']) | |
.one() | |
%} |