Lines Matching defs:type
11 protected $type;
58 * @param string $type
60 public function __construct($type)
64 if (!array_key_exists($type, $this->formatting)) {
65 trigger_error('Invalid formatting type ' . $type, E_USER_WARNING);
68 $this->type = $type;
72 $key = array_search($type, $modes);
89 if ($mode == $this->type) {
94 $this->formatting[$this->type]['entry'],
96 $this->type
105 $this->formatting[$this->type]['exit'],
106 $this->type
113 return $this->formatting[$this->type]['sort'];