This file contains 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
{% apply spaceless %} | |
{# lightswitch field values #} | |
{% if lighswitchOn is not defined %} | |
{% set lighswitchOn = 'yes' %} | |
{% endif %} | |
{% if lighswitchOff is not defined %} | |
{% set lighswitchOff = 'no' %} | |
{% endif %} |
This file contains 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
{# settings #} | |
{% set map = include('usa.svg') %} | |
{% set mapLinks = entry.mapLinks.all() %} | |
{# logic #} | |
{% set map = map|retconRemove('style') %} | |
{% set regionsUsed = [] %} | |
{% for link in mapLinks %} | |
{% if link.linkRegion is not empty and link.linkEntry.exists() and link.linkRegion not in regionsUsed %} | |
{% set regionsUsed = regionsUsed|merge([link.linkRegion]) %} |
This file contains 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
{%- macro transformOrPlaceholder(image, settings, attributes = {}) -%} | |
{% if image is not null %} | |
{% set src = image.getUrl(settings) %} | |
{% set attributes = attributes|merge({src: src}) %} | |
{{tag('img', attributes)}} | |
{% elseif settings.width is defined or settings.height is defined %} | |
{% set width = settings.width ?? settings.height %} | |
{% set height = settings.height ?? settings.width %} | |
{% set src = 'https://placehold.co/'~width~'x'~height %} | |
{% set attributes = attributes|merge({src: src}) %} |
This file contains 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
<form class="js-contact-form"> | |
<fieldset class="js-contact-form-fieldset"> | |
{{ csrfInput() }} | |
<div class="field"> | |
{{tag('label', { | |
for: 'form-email', | |
class: 'label', | |
text: 'Your Email'|t('contact-form'), | |
}) }} |
This file contains 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
// place this code in module variable file | |
public $userFieldHandle = 'visitedarticles'; | |
public $categoryFieldHandle = 'articleCategory'; | |
public function saveArticleVisit($article){ | |
$user = Craft::$app->getUser()->getIdentity(); | |
if(!is_null($user)){ |
This file contains 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
'components' => [ | |
'log' => function() { | |
$config = craft\helpers\App::logConfig(); | |
if ($config) { | |
$config['targets'][0]['includeUserIp'] = false; | |
$config['targets'][0]['logFile'] = '@storage/logs/web.log'; | |
$config['targets'][0]['enableRotation'] = true; | |
$config['targets'][0]['maxFileSize'] = 10240; | |
$config['targets'][0]['maxLogFiles'] = 5; | |
$config['targets'][0]['levels'] = ['error', 'warning']; |
This file contains 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
{% if article is defined %} | |
<li> | |
{{article.id}} - {{article.title}} | |
</li> | |
{% endif %} |
This file contains 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
use craft\mail\Message; | |
$settings = Craft::$app->systemSettings->getSettings('email'); | |
$message = new Message(); | |
$message->setFrom([$settings['fromEmail'] => $settings['fromName']]); | |
$message->setTo('[email protected]'); | |
$message->setHtmlBody('test body'); | |
$message->setSubject('test subject'); | |
Craft::$app->mailer->send($message); |
This file contains 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
{% macro jsVar(variable, jsVariableName) %} | |
{# v1 #} | |
var {{jsVariableName}} = {{variable|json_encode|raw}}; | |
{% endmacro %} |