⬆️ update civix generated code
This commit is contained in:
parent
dcae7c6a69
commit
06e30f6ef7
1 changed files with 13 additions and 37 deletions
|
@ -7,9 +7,9 @@
|
||||||
* extension.
|
* extension.
|
||||||
*/
|
*/
|
||||||
class CRM_TwingleCampaign_ExtensionUtil {
|
class CRM_TwingleCampaign_ExtensionUtil {
|
||||||
const SHORT_NAME = "twinglecampaign";
|
const SHORT_NAME = 'twinglecampaign';
|
||||||
const LONG_NAME = "de.forumzfd.twinglecampaign";
|
const LONG_NAME = 'de.forumzfd.twinglecampaign';
|
||||||
const CLASS_PREFIX = "CRM_TwingleCampaign";
|
const CLASS_PREFIX = 'CRM_TwingleCampaign';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Translate a string using the extension's domain.
|
* Translate a string using the extension's domain.
|
||||||
|
@ -193,8 +193,9 @@ function _twinglecampaign_civix_civicrm_disable() {
|
||||||
* @param $op string, the type of operation being performed; 'check' or 'enqueue'
|
* @param $op string, the type of operation being performed; 'check' or 'enqueue'
|
||||||
* @param $queue CRM_Queue_Queue, (for 'enqueue') the modifiable list of pending up upgrade tasks
|
* @param $queue CRM_Queue_Queue, (for 'enqueue') the modifiable list of pending up upgrade tasks
|
||||||
*
|
*
|
||||||
* @return mixed based on op. for 'check', returns array(boolean) (TRUE if upgrades are pending)
|
* @return mixed
|
||||||
* for 'enqueue', returns void
|
* based on op. for 'check', returns array(boolean) (TRUE if upgrades are pending)
|
||||||
|
* for 'enqueue', returns void
|
||||||
*
|
*
|
||||||
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_upgrade
|
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_upgrade
|
||||||
*/
|
*/
|
||||||
|
@ -220,41 +221,18 @@ function _twinglecampaign_civix_upgrader() {
|
||||||
* Search directory tree for files which match a glob pattern.
|
* Search directory tree for files which match a glob pattern.
|
||||||
*
|
*
|
||||||
* Note: Dot-directories (like "..", ".git", or ".svn") will be ignored.
|
* Note: Dot-directories (like "..", ".git", or ".svn") will be ignored.
|
||||||
* Note: In Civi 4.3+, delegate to CRM_Utils_File::findFiles()
|
* Note: Delegate to CRM_Utils_File::findFiles(), this function kept only
|
||||||
|
* for backward compatibility of extension code that uses it.
|
||||||
*
|
*
|
||||||
* @param string $dir base dir
|
* @param string $dir base dir
|
||||||
* @param string $pattern , glob pattern, eg "*.txt"
|
* @param string $pattern , glob pattern, eg "*.txt"
|
||||||
*
|
*
|
||||||
* @return array(string)
|
* @return array
|
||||||
*/
|
*/
|
||||||
function _twinglecampaign_civix_find_files($dir, $pattern) {
|
function _twinglecampaign_civix_find_files($dir, $pattern) {
|
||||||
if (is_callable(['CRM_Utils_File', 'findFiles'])) {
|
return CRM_Utils_File::findFiles($dir, $pattern);
|
||||||
return CRM_Utils_File::findFiles($dir, $pattern);
|
|
||||||
}
|
|
||||||
|
|
||||||
$todos = [$dir];
|
|
||||||
$result = [];
|
|
||||||
while (!empty($todos)) {
|
|
||||||
$subdir = array_shift($todos);
|
|
||||||
foreach (_twinglecampaign_civix_glob("$subdir/$pattern") as $match) {
|
|
||||||
if (!is_dir($match)) {
|
|
||||||
$result[] = $match;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if ($dh = opendir($subdir)) {
|
|
||||||
while (FALSE !== ($entry = readdir($dh))) {
|
|
||||||
$path = $subdir . DIRECTORY_SEPARATOR . $entry;
|
|
||||||
if ($entry{0} == '.') {
|
|
||||||
}
|
|
||||||
elseif (is_dir($path)) {
|
|
||||||
$todos[] = $path;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
closedir($dh);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return $result;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* (Delegated) Implements hook_civicrm_managed().
|
* (Delegated) Implements hook_civicrm_managed().
|
||||||
*
|
*
|
||||||
|
@ -362,7 +340,7 @@ function _twinglecampaign_civix_civicrm_themes(&$themes) {
|
||||||
* @link http://php.net/glob
|
* @link http://php.net/glob
|
||||||
* @param string $pattern
|
* @param string $pattern
|
||||||
*
|
*
|
||||||
* @return array, possibly empty
|
* @return array
|
||||||
*/
|
*/
|
||||||
function _twinglecampaign_civix_glob($pattern) {
|
function _twinglecampaign_civix_glob($pattern) {
|
||||||
$result = glob($pattern);
|
$result = glob($pattern);
|
||||||
|
@ -470,8 +448,6 @@ function _twinglecampaign_civix_civicrm_alterSettingsFolders(&$metaDataFolders =
|
||||||
*
|
*
|
||||||
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_entityTypes
|
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_entityTypes
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function _twinglecampaign_civix_civicrm_entityTypes(&$entityTypes) {
|
function _twinglecampaign_civix_civicrm_entityTypes(&$entityTypes) {
|
||||||
$entityTypes = array_merge($entityTypes, array (
|
$entityTypes = array_merge($entityTypes, []);
|
||||||
));
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue