mirror of
https://codeberg.org/artfulrobot/contactcats.git
synced 2025-06-26 01:48:06 +02:00
lots
This commit is contained in:
parent
3b393be4f4
commit
0b96026602
17 changed files with 458 additions and 38 deletions
17
CRM/Contactcats/Page/Settings.php
Normal file
17
CRM/Contactcats/Page/Settings.php
Normal 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();
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue