Search

Showing 7 of 2,041 result(s)

/tidal-starter-kit/v1/license#content-7-additional-terms

“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in...

/blog/2022/11/01/a-beginners-guide-to-antlers-arrays-and-loops#content-accessing-arbitrary-array-ranges

In the previous section, we looked at how we can use the first and last modifiers to retrieve their individual items from an array. We can also use the limit and offset modifiers to retrieve ranges of elements from an array or a subset of the...

/blog/2016/12/07/laravel-artisan-custom-styles-custom-progress-bar-styles#content-overriding-placeholders-and-formats

You can customize or override format definitions and placeholders by using the setFormatDefinition($name, $format) and setPlaceholderFormatterDefinition($name, callable $callable) methods, respectively. These methods can be useful when dealing you...

/blog/2021/02/15/implementing-a-customer-dsl-parser-in-php#content-parsing-string-input-values

Our next challenge is going to be allowing for string input values. We will update our input.txt file to contain the following value: where(name, =, 'Simple string input') If we run our parser now we get the following output: It almost looks...

/blog/2021/11/07/creating-a-statamic-compact-modifier#content-interacting-with-the-context

In the previous section we generated the scaffolding for our modifier, and started the basic implementation. We left off being able to split our modifier's input into an array of variable names, but did not actually retrieve the value of those...

/tidal-starter-kit/v1/managing-projects-and-versions#content-creating-versions

Each software project within a Tidal site needs at least one version. A version contains additional settings, as well as the entries for each of the documentation pages. Each version within a project has a few components to make everything work:...

/blog/2023/09/03/creating-a-hybrid-cache-system-for-statamic-part-three#content-making-our-cache-configurable-and-excluding-items-from-the-cache

In this section, we will work to make our cache system configurable and exclude requests from the cache. To get started, let us create the following file at config/hybrid-cache.php and discuss the types of behaviors we will make dynamic. In...