1234567891011121314151617181920212223242526272829303132 |
- HTML Purifier Extras
- The Method Behind The Madness!
- The extras/ folder in HTML Purifier contains--you guessed it--extra things
- for HTML Purifier. Specifically, these are two extra libraries called
- FSTools and ConfigSchema. They
- if you
- if you
- use one of HTML Purifier
- these libraries. Who knows: maybe you
- Here are the libraries:
- FSTools
- -------
- Short for File System Tools, this is a poor-man
- the filesystem. It currently consists of two classes:
- - FSTools: This is a singleton that contains a manner of useful functions
- such as recursive glob, directory removal, etc, as well as the ability
- to call arbitrary native PHP functions through it like $FS->fopen(...).
- This makes it a lot simpler to mock these filesystem calls for unit testing.
- - FSTools_File: This object represents a single file, and has almost any
- method imaginable one would need.
- Check the files themselves for more information.
- vim: et sw=4 sts=4
|