function PARSEPAGE::init in Bibliography Module 6
Same name and namespace in other branches
- 5 bibtexParse/PARSEPAGE.php \PARSEPAGE::init()
- 6.2 modules/bibtexParse/PARSEPAGE.php \PARSEPAGE::init()
- 7.3 plugins/biblio_style/bibtex/PARSEPAGE.php \PARSEPAGE::init()
- 7 modules/bibtexParse/PARSEPAGE.php \PARSEPAGE::init()
- 7.2 modules/bibtexParse/PARSEPAGE.php \PARSEPAGE::init()
File
- bibtexParse/
PARSEPAGE.php, line 31
Class
Code
function init($item) {
$item = trim($item);
if ($this
->type1($item)) {
return $this->return;
}
// else, return first number we can find
if (preg_match("/(\\d+|[ivx]+)/i", $item, $array)) {
return array(
$array[1],
FALSE,
);
}
// No valid page numbers found
return array(
FALSE,
FALSE,
);
}