mirror of
https://codeberg.org/artfulrobot/contactcats.git
synced 2025-06-26 01:38:04 +02:00
15 lines
512 B
PHP
15 lines
512 B
PHP
<?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();
|
|
}
|
|
|
|
}
|