コード例 #1
0
 /**
  * Read and affect tca parameters if they are defined in the conf
  * ex: tca.fe_users.columns.name.config.eval = required
  */
 public function addTsTca()
 {
     if (!empty($this->pObj->conf['tca.'][$this->table . '.'])) {
         $tsTca = tx_t3devapi_miscellaneous::stripDotInTsArray($this->pObj->conf['tca.'][$this->table . '.']);
         $this->tca = tx_t3devapi_miscellaneous::arrayMergeRecursiveReplace($this->tca, $tsTca);
     }
 }