mirror of
https://codeberg.org/artfulrobot/contactcats.git
synced 2025-06-25 23:38:06 +02:00
17 lines
517 B
PHP
17 lines
517 B
PHP
<?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();
|
|
}
|
|
|
|
}
|