You are here

function Creators::getCreatorByName in Bibliography Module 6

Same name and namespace in other branches
  1. 6.2 modules/bibtexParse/PARSECREATORS.php \Creators::getCreatorByName()
  2. 7.3 plugins/biblio_style/bibtex/PARSECREATORS.php \Creators::getCreatorByName()
  3. 7 modules/bibtexParse/PARSECREATORS.php \Creators::getCreatorByName()
  4. 7.2 modules/bibtexParse/PARSECREATORS.php \Creators::getCreatorByName()

File

bibtexParse/PARSECREATORS.php, line 30

Class

Creators

Code

function getCreatorByName($name) {
  $result = db_query('SELECT *
				            FROM {biblio_contributor_data}
				            WHERE lastname RLIKE "[[:<:]]%s[[:>:]]" ', $name);
}