titanscssc::lib_if PHP Method

lib_if() protected method

protected lib_if ( $args )
    protected function lib_if($args)
    {
        list($cond, $t, $f) = $args;
        if ($cond == self::$false) {
            return $f;
        }
        return $t;
    }
titanscssc