Coder Social home page Coder Social logo

cache-header-control's Introduction

Craft HTTP cache header control plugin

Build Status Code Climate Test Coverage Issue Count

This plugin makes it easier to set up an Cache-Control and Expiration HTTP header from your templates.

Installation

Install it with Composer:

composer require pixelcode/cacheheadercontrol

Usage

Use it in your template(s):

{% http_cache %}

This will set the headers based on the plugin configuration.

{% http_cache false %}

This will disable cache for the template.

{% http_cache '+5 minutes' %}

This will set the cache expiration to 5 minutes after the current time, so the template will be cached for 5 minutes.

You can use all 'strtotime' formats here, see http://php.net/manual/en/function.strtotime.php.

Configuration

Options

enableCache

Default: true

Enable or disable cache headers. If this is set to 'false' and you add the 'http_cache' tag to a template, the Expiration header will get the value of {time} - 1 second.

defaultCacheExpiration

Default: +15 minutes

Default expiration used when you use '{% http_cache %}' without any custom options.

Overwrite configuration

You can overwrite the configuration by creating a PHP file with the name 'cacheHeaderControl.php' in the 'craft/config' folder.

Example for overwriting the default expiration:

<?php

return [
    'defaultCacheExpiration' => '+5 minutes',
];

cache-header-control's People

Contributors

jordypixelcode avatar

Watchers

James Cloos avatar Thijs Kaspers avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.