This commit is contained in:
Rich Lott / Artful Robot 2024-02-28 13:00:56 +00:00
parent 3b393be4f4
commit 0b96026602
17 changed files with 458 additions and 38 deletions

View file

@ -0,0 +1,17 @@
<?php
use CRM_Contactcats_ExtensionUtil as E;
class CRM_Contactcats_Page_Settings 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 Settings'));
// 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();
}
}