/**
  * Constructor Function
  * @param string $table The table to use as information source
  */
 function __construct()
 {
     global $cfg;
     parent::__construct($cfg["tab"]["tasks"], "idtask");
     $this->_setItemClass("WorkflowTask");
 }
 /**
  * Constructor Function
  * @param none
  */
 public function __construct()
 {
     global $cfg;
     parent::__construct($cfg["tab"]["news_jobs"], "idnewsjob");
     $this->_setItemClass("cNewsletterJob");
 }
 /**
  * Constructor Function
  * @param string $table The table to use as information source
  */
 function __construct()
 {
     global $cfg;
     parent::__construct($cfg["tab"]["workflow_actions"], "idworkflowaction");
     $this->_setItemClass("WorkflowAction");
 }
 /**
  * Constructor Function
  * @param none
  */
 public function __construct()
 {
     global $cfg;
     parent::__construct($cfg["tab"]["news_groupmembers"], "idnewsgroupmember");
     $this->_setJoinPartner('RecipientGroupCollection');
     $this->_setJoinPartner('RecipientCollection');
     $this->_setItemClass("RecipientGroupMember");
 }
 /**
  * Constructor Function
  * @param string $table The table to use as information source
  */
 function __construct()
 {
     global $cfg;
     parent::__construct($cfg["tab"]["workflow_art_allocation"], "idartallocation");
     $this->_setItemClass("WorkflowArtAllocation");
 }
 /**
  * Constructor Function
  * @param none
  */
 public function __construct()
 {
     global $cfg;
     parent::__construct($cfg["tab"]["news_rcp"], "idnewsrcp");
     $this->_setItemClass("Recipient");
 }