Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pointybeard/numberfield

Symphony 2 field extension. Accepts only numbers, and stores them internally as a number.
https://github.com/pointybeard/numberfield

Last synced: about 1 month ago
JSON representation

Symphony 2 field extension. Accepts only numbers, and stores them internally as a number.

Awesome Lists containing this project

README

        

# Number Field

Input field that provides built-in number validation and numeric sorting.

## Installation

1. Upload the 'numberfield' folder in this archive to your Symphony 'extensions' folder.
2. Enable it by selecting the "Field: Number", choose Enable from the with-selected menu, then click Apply.
3. You can now add the "Number" field to your sections.

## Datasource Filtering

The number field provides two additional datasource filtering methods:

### 1) Range filtering

You can easily filter by a numeric range on the number field on your datasource. Simply enter something like this:

10 to 20

This will return all entries that have a field value between 10 and 20. Spaces are optional.

Just like any other datasource filter, you can make these values dynamic:

{$url-lower-limit} to {$url-upper-limit}

This would let you pass through the upper and lower limit as url parameters. E.g. `/products/?lower-limit=10&upper-limit=20`

### 2) Less than or greater than

You can also use standard greater than or less than symbols in the filter value or you can use words. e.g.

> 20
greater than 20

This will return all entries that have a value greater than 20.

<= 20
equal to or less than 20

This will return all entries that have a value of 20 or less.