Lines Matching refs:bibdb
3162 $this->db->bibdb = $entries;
3191 $this->setEntries($bibdatabase->bibdb);
3203 $db->bibdb = $entries;
3265 $this->setEntries($bibdatabase->bibdb);
3450 $this->setEntries($bibdatabase->bibdb);
3476 $this->db->bibdb = $this->entries;
3825 var $bibdb; variable in BibDataBase
3864 if (!isset($this->bibdb[$b->getKey()])) {
3869 …else if (isset($this->bibdb[$b->getKey()]) && ($b->toHTML() !== $this->bibdb[$b->getKey()]->toHTML…
3871 $this->bibdb[$b->getKey()] = $b;
3876 foreach ($this->bibdb as $e) {
3881 unset($this->bibdb[$e->getKey()]);
3897 $this->bibdb = array();
3904 $array = $this->bibdb; // array passed by value
3913 return $this->bibdb;
3917 return isset($this->bibdb[$key]);
3924 foreach ($this->bibdb as $b) {
3933 foreach ($this->bibdb as $b) {
3946 foreach ($this->bibdb as $bib) {
3964 foreach ($this->bibdb as $bib) {
3984 foreach ($this->bibdb as $bib) {
4000 foreach ($this->bibdb as $bib) {
4032 return $this->bibdb[$key];
4041 $entry->order = count($this->bibdb);
4042 $this->bibdb[$entry->getKey()] = $entry;
4052 foreach($this->bibdb as $bib) {
4064 if (isset($query[Q_ALL])) return array_values($this->bibdb);
4068 foreach ($this->bibdb as $bib) {
4172 foreach($this->bibdb as $bibentry) { $s.=$bibentry->getText()."\n"; }