Lines Matching refs:opt
26 $this->opt['value'] = '1';
28 $this->opt['value'] = '0';
30 $this->opt['true_value'] = substr($arg, 1);
34 $this->opt['false_value'] = substr($arg, 1);
41 $this->opt['optional'] = true;
52 if ($this->opt['value'] === '1') {
53 return isset($this->opt['true_value']) ?
54 $this->opt['true_value'] :
56 } elseif ($this->opt['value'] === '0') {
57 return isset($this->opt['false_value']) ?
58 $this->opt['false_value'] :
71 return $this->opt['value'] === '1';
83 if(isset($this->opt['id'])) {
84 $id = $this->opt['id'];
88 $this->opt,