function ARC_api::get_component in Taxonomy import/export via XML 6.2
Same name and namespace in other branches
- 5.2 arc/ARC_api.php \ARC_api::get_component()
- 5 arc/ARC_api.php \ARC_api::get_component()
- 6 arc/ARC_api.php \ARC_api::get_component()
10 calls to ARC_api::get_component()
File
- arc/
ARC_api.php, line 152
Class
Code
function get_component($name, $class_name) {
if (!isset($this->{$name})) {
if (!($tmp = $this
->load_code($class_name))) {
return $tmp;
}
$this->{$name} =& new $class_name($this);
}
return $this->{$name};
}