Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/main/inc/lib/htmlpurifier/extras
Yannick Warnier 3ffacb4a92 Backing out Cesar's mistaken push 14 years ago
..
ConfigDoc Backing out Cesar's mistaken push 14 years ago
FSTools Backing out Cesar's mistaken push 14 years ago
FSTools.php Backing out Cesar's mistaken push 14 years ago
HTMLPurifierExtras.auto.php Backing out Cesar's mistaken push 14 years ago
HTMLPurifierExtras.autoload.php Backing out Cesar's mistaken push 14 years ago
HTMLPurifierExtras.php Backing out Cesar's mistaken push 14 years ago
README Backing out Cesar's mistaken push 14 years ago
index.html Backing out Cesar's mistaken push 14 years ago

README


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're extra for a reason: you don't need them
if you're using HTML Purifier for normal usage: filtering HTML. However,
if you're a developer, and would like to test HTML Purifier, or need to
use one of HTML Purifier's maintenance scripts, chances are they'll need
these libraries. Who knows: maybe you'll find them useful too!

Here are the libraries:


FSTools
-------

Short for File System Tools, this is a poor-man's object-oriented wrapper for
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