[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

/lib/mustache/src/Mustache/ -> Tokenizer.php (summary)

(no description)

File Size: 322 lines (11 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

Mustache_Tokenizer:: (7 methods):
  scan()
  reset()
  flushBuffer()
  changeDelimiters()
  setDelimiters()
  addPragma()
  tagChange()


Class: Mustache_Tokenizer  - X-Ref

Mustache Tokenizer class.

This class is responsible for turning raw template source into a set of Mustache tokens.
scan($text, $delimiters = null)   X-Ref
Scan and tokenize template source.

param: string $text       Mustache template source to tokenize
param: string $delimiters Optionally, pass initial opening and closing delimiters (default: null)
return: array Set of Mustache tokens

reset()   X-Ref
Helper function to reset tokenizer internal state.


flushBuffer()   X-Ref
Flush the current buffer to a token.


changeDelimiters($text, $index)   X-Ref
Change the current Mustache delimiters. Set new `otag` and `ctag` values.

param: string $text  Mustache template source
param: int    $index Current tokenizer index
return: int New index value

setDelimiters($delimiters)   X-Ref
Set the current Mustache `otag` and `ctag` delimiters.

param: string $delimiters

addPragma($text, $index)   X-Ref
Add pragma token.

Pragmas are hoisted to the front of the template, so all pragma tokens
will appear at the front of the token list.

param: string $text
param: int    $index
return: int New index value

tagChange($tag, $tagLen, $text, $index)   X-Ref
Test whether it's time to change tags.

param: string $tag    Current tag name
param: int    $tagLen Current tag name length
param: string $text   Mustache template source
param: int    $index  Current tokenizer index
return: bool True if this is a closing section tag



Generated: Thu Aug 11 10:00:09 2016 Cross-referenced by PHPXref 0.7.1