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
Fuente de datos: Toponimia de Lanzarote | |
https://toplanzarote.ulpgc.es/listado.php?tipo=3 | |
Alegranza | |
Casa del Veril, La | |
Arrecife |
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
Fuente de datos: Toponimia de Lanzarote | |
https://toplanzarote.ulpgc.es/listado.php?tipo=3 | |
Alegranza | |
Casa del Veril, La | |
Arrecife |
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
Alegranza | |
Casa del Veril, La | |
Cerca de las Pencas | |
Cerca del Millo | |
Cerca el Jablillo | |
Cerca el Mato | |
Cerca Vieja | |
Corral del Veril | |
Corral Grande |
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
public function saved(Task $task): void | |
{ | |
if ($task->isDirty('attachment')) { | |
$originalFieldContents = $task->getOriginal('attachment'); | |
$newFieldContents = $task->attachment; | |
# We attempt to JSON decode the field. If it is an array, this is an indication we have ->multiple() activated | |
$originalFieldContentsDecoded = json_decode($task->getOriginal('attachment')); |
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
// Scale image to cover X | |
// =========================================== | |
scaleToCoverX : function( x, y, duration ) { | |
var self = this; | |
var current = self.current; | |
var $what = current.$content; |