Cheetah
|
Public Member Functions | |
__construct ($n='0', $u=false) | |
toString () | |
getN () | |
getUnit () | |
isValid () | |
compareTo ($l) | |
Static Public Member Functions | |
static | make ($s) |
Protected Member Functions | |
validate () | |
Protected Attributes | |
$n | |
$unit | |
$isValid | |
Static Protected Attributes | |
static | $allowedUnits |
Represents a measurable length, with a string numeric magnitude and a unit. This object is immutable.
Definition at line 7466 of file HTMLPurifier.standalone.php.
HTMLPurifier_Length::__construct | ( | $n = '0' , |
|
$u = false |
|||
) |
string | $n | Magnitude |
bool | string | $u | Unit |
Definition at line 7502 of file HTMLPurifier.standalone.php.
HTMLPurifier_Length::compareTo | ( | $l | ) |
Compares two lengths, and returns 1 if greater, -1 if less and 0 if equal.
HTMLPurifier_Length | $l |
Definition at line 7605 of file HTMLPurifier.standalone.php.
HTMLPurifier_Length::getN | ( | ) |
Retrieves string numeric magnitude.
Definition at line 7572 of file HTMLPurifier.standalone.php.
HTMLPurifier_Length::getUnit | ( | ) |
HTMLPurifier_Length::isValid | ( | ) |
Returns true if this length unit is valid.
Definition at line 7590 of file HTMLPurifier.standalone.php.
|
static |
string | $s | Unit string, like '2em' or '3.4in' |
Definition at line 7513 of file HTMLPurifier.standalone.php.
HTMLPurifier_Length::toString | ( | ) |
Returns string representation of number.
Definition at line 7560 of file HTMLPurifier.standalone.php.
|
protected |
Validates the number and unit.
Definition at line 7531 of file HTMLPurifier.standalone.php.
|
staticprotected |
Array Lookup array of units recognized by CSS 3 @type array
Definition at line 7491 of file HTMLPurifier.standalone.php.
|
protected |
Whether or not this length is valid. Null if not calculated yet. @type bool
Definition at line 7485 of file HTMLPurifier.standalone.php.
|
protected |
String numeric magnitude. @type string
Definition at line 7473 of file HTMLPurifier.standalone.php.
|
protected |
String unit. False is permitted if $n = 0. @type string|bool
Definition at line 7479 of file HTMLPurifier.standalone.php.