Exemplo n.º 1
0
 public function getItem()
 {
     if (array_key_exists('PollItem', $this->reference)) {
         return $this->reference['PollItem'];
     }
     require_once "PollItem.php";
     $item = new PollItem($this->plugin);
     $this->reference[$item->getClassName()] = $item;
     return $item;
 }