Search

Showing 7 of 1,975 result(s)

/blog/2023/09/03/creating-a-hybrid-cache-system-for-statamic-part-three#content-bypassing-the-cache

Currently, our caching system doesn't cache pages viewed by logged-in users. However, if a page was cached before a user logs in, that cached page is served to all logged-in users. While this might work for some websites, it poses challenges when...

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

…ing a string. If so, we will add the current value of $currentSegment to our $filterInputs before resetting things and moving on: Our parser output is now: We now have a new problem in that we have an empty string value as a fourth input value...

/blog/2017/09/24/image-resources-for-applications-and-blogs

A common problem faced by blog authors, site hobbyist, start-ups, etc. is sourcing high-quality images without breaking the bank. Believe it or not, there are many resources available online that make amazing images available at no cost for both...

/blog/2021/12/12/creating-a-content-reaction-system-with-statamic-3-and-antlers#content-writing-the-php-code-to-store-reactions

To begin this section we are going to first create a new Antlers partial which will give us a place to start placing our frontend code to test submitting reactions. We will continue updating this partial throughout the article to build out a...

/blog/2022/11/01/a-beginners-guide-to-antlers-arrays-and-loops

Arrays are the most versatile datatype when working with Antlers templates. Throughout this article, we will look at various ways to iterate arrays, define and manipulate them, and the default helper variables that exist to help you develop your...

/blog/2021/01/07/implementing-csharp-events

A common requirement when designing and implementing software is the ability to respond to certain code conditions, or at key points in an application's execution lifecycle. These conditions and lifecycle points can be thought of as events , where...

/blog/2014/07/21/part-one-creating-a-custom-pagination-view-in-laravel

…You can view the completed part two of this article by visiting Part Two: Creating a Custom Pagination View in Laravel In this post we are going to look at building a custom paginator view in Laravel 4. There are quite a few posts are the Web...