From ca434f9bede3ac4eea3a941786c67572c2d5d2db Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Fri, 3 May 2019 16:35:51 -0700 Subject: [PATCH] Add skeletal modules --- ext/afform/core/ang/af.ang.php | 31 +++++++++++++++++++++++++++++ ext/afform/core/ang/af.css | 1 + ext/afform/core/ang/af.js | 4 ++++ ext/afform/core/ang/afBlock.ang.php | 31 +++++++++++++++++++++++++++++ ext/afform/core/ang/afBlock.css | 1 + ext/afform/core/ang/afBlock.js | 4 ++++ ext/afform/core/ang/afField.ang.php | 31 +++++++++++++++++++++++++++++ ext/afform/core/ang/afField.css | 1 + ext/afform/core/ang/afField.js | 4 ++++ 9 files changed, 108 insertions(+) create mode 100644 ext/afform/core/ang/af.ang.php create mode 100644 ext/afform/core/ang/af.css create mode 100644 ext/afform/core/ang/af.js create mode 100644 ext/afform/core/ang/afBlock.ang.php create mode 100644 ext/afform/core/ang/afBlock.css create mode 100644 ext/afform/core/ang/afBlock.js create mode 100644 ext/afform/core/ang/afField.ang.php create mode 100644 ext/afform/core/ang/afField.css create mode 100644 ext/afform/core/ang/afField.js diff --git a/ext/afform/core/ang/af.ang.php b/ext/afform/core/ang/af.ang.php new file mode 100644 index 0000000000..b40dd53486 --- /dev/null +++ b/ext/afform/core/ang/af.ang.php @@ -0,0 +1,31 @@ + + array ( + 0 => 'ang/af.js', + 1 => 'ang/af/*.js', + 2 => 'ang/af/*/*.js', + ), + 'css' => + array ( + 0 => 'ang/af.css', + ), + 'partials' => + array ( + 0 => 'ang/af', + ), + 'requires' => + array ( + 0 => 'crmUi', + 1 => 'crmUtil', + 2 => 'ngRoute', + ), + 'settings' => + array ( + ), + 'basePages' => [], +); diff --git a/ext/afform/core/ang/af.css b/ext/afform/core/ang/af.css new file mode 100644 index 0000000000..572e25591d --- /dev/null +++ b/ext/afform/core/ang/af.css @@ -0,0 +1 @@ +/* Add any CSS rules for Angular module "af" */ diff --git a/ext/afform/core/ang/af.js b/ext/afform/core/ang/af.js new file mode 100644 index 0000000000..bf8b47d5e6 --- /dev/null +++ b/ext/afform/core/ang/af.js @@ -0,0 +1,4 @@ +(function(angular, $, _) { + // Declare a list of dependencies. + angular.module('af', CRM.angRequires('af')); +})(angular, CRM.$, CRM._); diff --git a/ext/afform/core/ang/afBlock.ang.php b/ext/afform/core/ang/afBlock.ang.php new file mode 100644 index 0000000000..72baf5fb48 --- /dev/null +++ b/ext/afform/core/ang/afBlock.ang.php @@ -0,0 +1,31 @@ + + array ( + 0 => 'ang/afBlock.js', + 1 => 'ang/afBlock/*.js', + 2 => 'ang/afBlock/*/*.js', + ), + 'css' => + array ( + 0 => 'ang/afBlock.css', + ), + 'partials' => + array ( + 0 => 'ang/afBlock', + ), + 'requires' => + array ( + 0 => 'crmUi', + 1 => 'crmUtil', + 2 => 'ngRoute', + ), + 'settings' => + array ( + ), + 'basePages' => [], +); diff --git a/ext/afform/core/ang/afBlock.css b/ext/afform/core/ang/afBlock.css new file mode 100644 index 0000000000..4ea218a132 --- /dev/null +++ b/ext/afform/core/ang/afBlock.css @@ -0,0 +1 @@ +/* Add any CSS rules for Angular module "afBlock" */ diff --git a/ext/afform/core/ang/afBlock.js b/ext/afform/core/ang/afBlock.js new file mode 100644 index 0000000000..7eccc58d68 --- /dev/null +++ b/ext/afform/core/ang/afBlock.js @@ -0,0 +1,4 @@ +(function(angular, $, _) { + // Declare a list of dependencies. + angular.module('afBlock', CRM.angRequires('afBlock')); +})(angular, CRM.$, CRM._); diff --git a/ext/afform/core/ang/afField.ang.php b/ext/afform/core/ang/afField.ang.php new file mode 100644 index 0000000000..bc582bde85 --- /dev/null +++ b/ext/afform/core/ang/afField.ang.php @@ -0,0 +1,31 @@ + + array ( + 0 => 'ang/afField.js', + 1 => 'ang/afField/*.js', + 2 => 'ang/afField/*/*.js', + ), + 'css' => + array ( + 0 => 'ang/afField.css', + ), + 'partials' => + array ( + 0 => 'ang/afField', + ), + 'requires' => + array ( + 0 => 'crmUi', + 1 => 'crmUtil', + 2 => 'ngRoute', + ), + 'settings' => + array ( + ), + 'basePages' => [], +); diff --git a/ext/afform/core/ang/afField.css b/ext/afform/core/ang/afField.css new file mode 100644 index 0000000000..f7242cc0b7 --- /dev/null +++ b/ext/afform/core/ang/afField.css @@ -0,0 +1 @@ +/* Add any CSS rules for Angular module "afField" */ diff --git a/ext/afform/core/ang/afField.js b/ext/afform/core/ang/afField.js new file mode 100644 index 0000000000..617a10b090 --- /dev/null +++ b/ext/afform/core/ang/afField.js @@ -0,0 +1,4 @@ +(function(angular, $, _) { + // Declare a list of dependencies. + angular.module('afField', CRM.angRequires('afField')); +})(angular, CRM.$, CRM._); -- 2.25.1