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
$model = new DynamicModel($request->getBodyParams(), [ | |
[ | |
['firstname', 'lastname', 'mail', 'privacy'], | |
'required', | |
'message' => Craft::t('site', "Folgendes Feld Fehlt: {attribute}") | |
] | |
]); | |
$model->addRule('minEntryTimeMethod', static function() use ($model){ | |
if (/* kleiner als 3s */) { | |
$model->addError('title', "Sie haben zu schnell abgesendet"); |
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
<?php | |
// just a simple migration file to store the information | |
namespace craft\contentmigrations; | |
use Craft; | |
use craft\db\Migration; | |
/** |
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
<?php | |
Craft::$app->getView()->hook( | |
/** | |
* @param array $context | |
*/ | |
'cp.entries.edit', | |
function(array &$context) { | |
/** @var Section $section */ | |
$section = $context['section']; |
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
Craft.OriginalEntryIndex = Craft.EntryIndex; | |
Craft.EntryIndex = Craft.OriginalEntryIndex.extend({ | |
afterInit: function(){ | |
this.$statusMenuBtn.data("menubtn").menu.$options[1].click(); | |
this.base.apply(this, arguments); | |
} | |
}); | |
delete(Craft._elementIndexClasses["craft\\\elements\\\Entry"]); | |
Craft.registerElementIndexClass("craft\\\elements\\\Entry", Craft.EntryIndex); |
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
<?php | |
/** | |
* ElementCreate Action: this class handles Updating and Creating Craft elements, | |
* | |
* API for Craft CMS 3.x | |
* | |
* Created with PhpStorm. | |
* | |
* @link https://github.com/Anubarak/ | |
* @copyright Copyright (c) 2019 Robin Schambach |
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
Craft::$app->getView()->hook( | |
/** | |
* @param array $context | |
*/ | |
'cp.entries.edit', | |
function(array &$context) { | |
/** @var Section $section */ | |
$section = $context['section']; | |
/** @var \craft\models\EntryType $entryType */ |
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
import axios from 'axios'; | |
// my vuex store | |
import store from './../store'; | |
axios.defaults.withCredentials = true; | |
const apiVersion = 'v1'; | |
const apiClient = axios.create({ | |
baseURL: 'https://XYZ/api/' + apiVersion + '/', | |
headers: { | |
Accept: 'application/json', |
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
<?php | |
/** | |
* How to create an ElementIndex via custom Record for Craft CMS 3.x | |
* | |
* @copyright Copyright (c) 2018 anubarak | |
*/ | |
namespace modules\mymodule\elements\db; | |
use craft\base\Element; | |
use craft\db\Query; |
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
$('.youtube-player').youtube(); | |
/** | |
* Youtube Plugin | |
*/ | |
(function ($, window, document, undefined) { | |
var pluginName = 'youtube'; | |
var scriptLoaded = false; | |
var isTouch = 'ontouchstart' in window, | |
eStart = isTouch ? 'touchstart' : 'mousedown', |
NewerOlder