mirror of
https://codeberg.org/artfulrobot/contactcats.git
synced 2025-06-25 19:58:05 +02:00
22 lines
629 B
PHP
22 lines
629 B
PHP
<?php
|
|
|
|
// Angular module crmSearchDisplayContactCat.
|
|
// @see https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_angularModules
|
|
|
|
return [
|
|
'js' => [
|
|
'ang/crmSearchDisplayContactCat.js',
|
|
'ang/crmSearchDisplayContactCat/*.js',
|
|
// 'ang/crmSearchDisplayContactCat/*/*.js',
|
|
],
|
|
'css' => [
|
|
'ang/crmSearchDisplayContactCat.css',
|
|
],
|
|
'partials' => [
|
|
'ang/crmSearchDisplayContactCat',
|
|
],
|
|
'requires' => ['crmUi', 'crmUtil', 'ngRoute'],
|
|
'settings' => [],
|
|
'basePages' => ['civicrm/search', 'civicrm/admin/search'],
|
|
'exports' => ['crmSearchAdminDisplayContactCat', 'crmSearchDisplayContactCat'],
|
|
];
|