work on visualisation

This commit is contained in:
Rich Lott / Artful Robot 2025-03-25 20:21:32 +00:00
parent 6cf63f5b42
commit 92db3be27e
8 changed files with 370 additions and 26 deletions

View file

@ -0,0 +1,15 @@
<?php
use CRM_Contactcats_ExtensionUtil as E;
class CRM_Contactcats_Page_Flows extends CRM_Core_Page {
public function run() {
// Example: Set the page-title dynamically; alternatively, declare a static title in xml/Menu/*.xml
// CRM_Utils_System::setTitle(E::ts('Contact Category Flows'));
// Example: Assign a variable for use in a template
// $this->assign('currentTime', date('Y-m-d H:i:s'));
Civi::service('angularjs.loader')->addModules('crmContactcats');
parent::run();
}
}