Merge pull request #18748 from eileenmcnaughton/log
[civicrm-core.git] / CRM / Core / CodeGen / Specification.php
index 6a96e0d7c2ab1b2596341dfaf101607ebaa71bd2..ed9e2f768ecd7142c271666d158bef5088b232f0 100644 (file)
@@ -215,6 +215,7 @@ class CRM_Core_CodeGen_Specification {
       'titlePlural' => $tableXML->titlePlural ?? CRM_Utils_String::pluralize($tableXML->title ?? $titleFromClass),
       'icon' => $tableXML->icon ?? NULL,
       'add' => $tableXML->add ?? NULL,
+      'paths' => (array) ($tableXML->paths ?? []),
       'labelName' => substr($name, 8),
       'className' => $this->classNames[$name],
       'bao' => ($useBao ? str_replace('DAO', 'BAO', $this->classNames[$name]) : $this->classNames[$name]),