fenom/docs
bzick e357dbe5f3 Change code coverage system to CodeClimate 2014-07-29 23:33:28 +04:00
..
dev Update dev docs 2014-06-06 10:27:06 +04:00
ext Update extend.md 2014-06-28 23:49:06 +04:00
mods Change code coverage system to CodeClimate 2014-07-29 23:33:28 +04:00
tags Doc for #80 2014-06-28 22:17:52 +04:00
adapters.md Fix switch. Update docs 2014-05-14 17:07:48 +04:00
articles.md Update articles.md 2013-07-07 01:46:09 +04:00
benchmark.md Update benchmark.md 2013-07-22 18:54:41 +04:00
callbacks.md Add docs (drafts) 2013-02-13 18:51:53 +04:00
configuration.md Update docs 2014-06-18 17:21:29 +04:00
helpme.md Update helpme.md 2014-06-24 12:03:13 +03:00
operators.md Update docs 2014-06-18 17:21:29 +04:00
readme.md Add modifiers match, ematch, replace, ereplace, split, esplit, join with documentation 2014-07-10 23:27:59 +04:00
start.md Update start.md 2014-07-28 13:49:28 +04:00
syntax.md Docs++ 2014-07-29 13:22:46 +04:00

readme.md

Documentation

Please, help translate documentation to english or fix typos. Read more.

Fenom


Tags

Usage

  • var — define variable
  • if, elseif and else — conditional statement
  • foreach, foreaelse, break and continue — traversing items in an array or object
  • for, forelse, break and continue — loop statement
  • switch, case, default
  • cycle — cycles on an array of values
  • include, insert — includes and evaluates the specified template
  • extends, use, block and parent — template inheritance
  • filter — apply modifier on a block of template data
  • ignore — ignore Fenom syntax
  • macro and import — template functions
  • autoescape — escape template fragment
  • raw — unescape template fragment
  • unset — unset a given variables
  • or add yours

Modifiers

Usage

  • upper aka up — convert to uppercase a string
  • lower aka low — convert to lowercase a string
  • date_format - format date, timestamp via strftime() function
  • date - format date, timestamp via date() function
  • truncate — truncate thee string to specified length
  • escape aka e — escape the string
  • unescape — unescape the string
  • strip — remove extra whitespaces
  • length — calculate length of string, array, object
  • in — find value in string or array
  • match — match string against a pattern.
  • ematch — perform a regular expression match.
  • replace — replace all occurrences of the search string with the replacement string.
  • ereplace — perform a regular expression search and replace.
  • split — split a string by string.
  • esplit — split string by a regular expression.
  • join — join array elements with a string.
  • allowed functions: json_encode, json_decode, count, is_string, is_array, is_numeric, is_int, is_object, strtotime, gettype, is_double, ip2long, long2ip, strip_tags, nl2br
  • or add yours

Operators


Extends