You are here

function Creators::getCreatorByName in Bibliography Module 7.2

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

File

modules/bibtexParse/PARSECREATORS.php, line 30

Class

Creators

Code

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