Proof-of-concept - Add afformCore AngularJS module
[civicrm-core.git] / ext / afform / ang / afformCore.ang.php
CommitLineData
0034006a
TO
1<?php
2// This file declares an Angular module which can be autoloaded
3// in CiviCRM. See also:
4// http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_angularModules
5
6return array(
7 'js' => array(
8 0 => 'ang/afformCore.js',
9 1 => 'ang/afformCore/*.js',
10 2 => 'ang/afformCore/*/*.js',
11 ),
12 'css' => array(),
13 'requires' => array('crmUi', 'crmUtil'),
14 'partials' => array('ang/afformCore'),
15 'settings' => array(),
16 'basePages' => [],
17);