Ejemplo n.º 1
0
 function __construct()
 {
     parent::__construct();
     if (sizeof($this->args) != 1) {
         die("you need to profide a csv file (1st column parent name, 2nd tag name");
     }
     $this->file = $this->args[0];
     $this->tags = array_flip(CRM_Core_PseudoConstant::get('CRM_Core_DAO_EntityTag', 'tag_id', array('onlyActive' => FALSE)));
 }