function ARC_erdf_parser::pop_subj in Taxonomy import/export via XML 6.2
Same name and namespace in other branches
- 5.2 arc/ARC_erdf_parser.php \ARC_erdf_parser::pop_subj()
- 5 arc/ARC_erdf_parser.php \ARC_erdf_parser::pop_subj()
- 6 arc/ARC_erdf_parser.php \ARC_erdf_parser::pop_subj()
1 call to ARC_erdf_parser::pop_subj()
File
- arc/
ARC_erdf_parser.php, line 348
Class
Code
function pop_subj() {
$new_subjs = array();
$this->subj_count--;
for ($i = 0, $i_max = $this->subj_count; $i < $i_max; $i++) {
$new_subjs[] = $this->subjs[$i];
}
$this->subjs = $new_subjs;
}