Skip to content

Instantly share code, notes, and snippets.

View jacksleight's full-sized avatar

Jack Sleight jacksleight

View GitHub Profile
@jacksleight
jacksleight / README.md
Last active November 20, 2021 20:01
Statamic Replace Asset Action

Statamic Replace Asset Action

Replace an asset with a new file. Also renames the asset to the new name (Statamic will update references).

Known Issues

  1. The asset Browse button doesn't seem to work inside an action modal (statamic/cms#4785). Not a huge issue as you'll probably be uploading a new file anyway, but if it did work you could replace one asset with another, which might be useful.
  2. If you upload a new file and then click Cancel instead of Run the new file will remain at the root of the container.
  3. If you select multiple assets only the first will be replaced.
@jacksleight
jacksleight / BladeTag.php
Last active October 28, 2021 09:38
Statamic Antlers Blade Tag
<?php
namespace App\Tags;
use Statamic\Tags\Tags;
use Symfony\Component\Debug\Exception\FatalThrowableError;
class Blade extends Tags
{
public function index()
@jacksleight
jacksleight / CustomNav.php
Last active January 27, 2022 17:49
Statamic Nav Performance Experiment
<?php
namespace App\Tags;
use Statamic\Tags\Tags;
use Statamic\Contracts\Structures\Structure as StructureContract;
use Statamic\Facades\Site;
use Statamic\Facades\URL;
use Statamic\Structures\TreeBuilder;
use Statamic\Facades\Data;