Ajax/bootstrap/html/base/HtmlNavElement.php 1 location
|
@@ 72-79 (lines=8) @@
|
69 |
|
return $this; |
70 |
|
} |
71 |
|
|
72 |
|
public function __call($method, $args) { |
73 |
|
if(isset($this->$method) && is_callable($this->$method)) { |
74 |
|
return call_user_func_array( |
75 |
|
$this->$method, |
76 |
|
$args |
77 |
|
); |
78 |
|
} |
79 |
|
} |
80 |
|
|
81 |
|
public abstract function fromDispatcher($dispatcher,$startIndex=0); |
82 |
|
|
Ajax/semantic/html/base/HtmlSemNavElement.php 1 location
|
@@ 74-81 (lines=8) @@
|
71 |
|
return $this; |
72 |
|
} |
73 |
|
|
74 |
|
public function __call($method, $args) { |
75 |
|
if(isset($this->$method) && is_callable($this->$method)) { |
76 |
|
return call_user_func_array( |
77 |
|
$this->$method, |
78 |
|
$args |
79 |
|
); |
80 |
|
} |
81 |
|
} |
82 |
|
|
83 |
|
public abstract function fromDispatcher($dispatcher,$startIndex=0); |
84 |
|
|