Insert speaker contact type into db

This commit is contained in:
Yoan Mollard
2022-07-27 22:12:36 +02:00
parent e271175de6
commit e9528443b2
2 changed files with 2 additions and 0 deletions

View File

@@ -371,6 +371,7 @@ class modEventOrganization extends DolibarrModules
$langs->load("eventorganization");
$cat = new Categorie($this->db);
$sql[] = "INSERT IGNORE INTO ".MAIN_DB_PREFIX.$cat->table_element."(label, type, entity, description, visible) VALUES('".$langs->trans('ApplicantOrVisitor')."', 2, 1, '".$langs->trans('EVENTORGANIZATION_CATEG_THIRDPARTY_CONF')."', 1)";
$sql[] = "INSERT IGNORE INTO ".MAIN_DB_PREFIX."c_type_contact(rowid, element, source, code, libelle, active) VALUES(300, 'conferenceorbooth', 'external', 'SPEAKER', '".$langs->trans('Speaker')."', 1)";
$init = $this->_init($sql, $options);