Skip to content
This repository has been archived by the owner on Jul 15, 2022. It is now read-only.

sjelfull/craft3-valuestore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Valuestore plugin for Craft CMS 3.x

Easily store some loose values into files

Screenshot

Requirements

This plugin requires Craft CMS 3.0.0-beta.23 or later.

Installation

To install the plugin, follow these instructions.

  1. Open your terminal and go to your Craft project:

     cd /path/to/project
    
  2. Then tell Composer to load the plugin:

     composer require superbig/craft3-valuestore
    
  3. In the Control Panel, go to Settings → Plugins and click the “Install” button for Valuestore.

Using Valuestore

{% set store = craft.valuestore.create('storeName.json') %}

{% do store.put('key', 'value') %}

{# Returns "value" #}
{{ store.get('key') }}

{# Returns true #}
{{ store.has('key') }}

{# Iterate over values #}
{% for key,value in store.all() %}{% endfor %}

{# Increment number - returns 1 #}
{{ store.increment('number') }}

See full overview of methods in the Valuestore readme

Credits

Add calendar icon by Ben Davis

Brought to you by Superbig