civicrm-core.git
10 years agoCRM-14370 - API Kernel - Add test for event lifecycle
Tim Otten [Fri, 28 Mar 2014 23:35:26 +0000 (16:35 -0700)]
CRM-14370 - API Kernel - Add test for event lifecycle

10 years agoCRM-14370 - API Kernel - Implement getEntityNames, getActionNames
Tim Otten [Fri, 28 Mar 2014 10:46:10 +0000 (03:46 -0700)]
CRM-14370 - API Kernel - Implement getEntityNames, getActionNames

Conflicts:

Civi/API/Provider/DoctrineCrudProvider.php
Civi/API/Registry.php
Civi/Core/Container.php
tests/phpunit/Civi/API/Provider/DoctrineCrudProviderTest.php

10 years agoSyntaxConformanceTest - Accept some variation in capitalizaiton of errors
Tim Otten [Fri, 28 Mar 2014 10:24:43 +0000 (03:24 -0700)]
SyntaxConformanceTest - Accept some variation in capitalizaiton of errors

10 years agoCRM-14370 - API Kernel - Move request parser to its own class
Tim Otten [Fri, 28 Mar 2014 08:34:13 +0000 (01:34 -0700)]
CRM-14370 - API Kernel - Move request parser to its own class

10 years agoCRM-14370 - Move helper functions into classes
Tim Otten [Fri, 28 Mar 2014 06:38:19 +0000 (23:38 -0700)]
CRM-14370 - Move helper functions into classes

In particular:

 * civicrm_get_api_version => Kernel::parseVersion
 * _civicrm_api_resolve => MagicFunctionProvider::resolve
 * _civicrm_api_loadEntity => MagicFunctionProvider::loadEntity
 * civicrm_api_get_function_name => MagicFunctionProvider::getFunctionName
 * civicrm_api3_generic_getActions (partial) => MagicFunctionProvider::getActionNames

Conflicts:

Civi/Core/Container.php

10 years agoCRM-14370 - API Kernel - Add UnauthorizedException, NotImplementedException
Tim Otten [Fri, 28 Mar 2014 06:20:35 +0000 (23:20 -0700)]
CRM-14370 - API Kernel - Add UnauthorizedException, NotImplementedException

Conflicts:

tests/phpunit/Civi/API/Provider/DoctrineCrudProviderTest.php

10 years agoCRM-14370 - Convert _civicrm_api3_api_check_permission to Civi\API\Subscriber\Permiss...
Tim Otten [Fri, 28 Mar 2014 00:27:41 +0000 (17:27 -0700)]
CRM-14370 - Convert _civicrm_api3_api_check_permission to Civi\API\Subscriber\PermissionCheck

Also: Restrict old permissions checks to APIv3

Conflicts:

Civi/Core/Container.php

10 years agoCRM-14370 - API Kernel - Move dispatch into helpers
Tim Otten [Fri, 28 Mar 2014 04:45:16 +0000 (21:45 -0700)]
CRM-14370 - API Kernel - Move dispatch into helpers

Also: Use constants for error codes

10 years agocivicrm_api3_create_error - Simplify
Tim Otten [Wed, 26 Mar 2014 06:09:19 +0000 (23:09 -0700)]
civicrm_api3_create_error - Simplify

10 years agoCRM-14370 - API Kernel - Parse options/data/chains for v4
Tim Otten [Thu, 27 Mar 2014 23:04:45 +0000 (16:04 -0700)]
CRM-14370 - API Kernel - Parse options/data/chains for v4

10 years agoCRM-14370 - API Kernel - Add ProviderInterface. Extract MagicFunctionProvider.
Tim Otten [Mon, 24 Mar 2014 22:47:56 +0000 (15:47 -0700)]
CRM-14370 - API Kernel - Add ProviderInterface. Extract MagicFunctionProvider.

10 years agoCRM-14370 - API Kernel - Extract createRequest()
Tim Otten [Mon, 24 Mar 2014 22:47:04 +0000 (15:47 -0700)]
CRM-14370 - API Kernel - Extract createRequest()

10 years agoCRM-14370 - API Kernel - Extract WrapperAdapter
Tim Otten [Sat, 22 Mar 2014 01:37:59 +0000 (18:37 -0700)]
CRM-14370 - API Kernel - Extract WrapperAdapter

10 years agoCRM-14370 - API Kernel - Extract APIv3SchemaAdapter
Tim Otten [Sat, 22 Mar 2014 01:13:16 +0000 (18:13 -0700)]
CRM-14370 - API Kernel - Extract APIv3SchemaAdapter

10 years agoCRM-14370 - API Kernel - Move authorization to listener
Tim Otten [Sat, 22 Mar 2014 00:25:58 +0000 (17:25 -0700)]
CRM-14370 - API Kernel - Move authorization to listener

10 years agoCRM-14370 - API Kernel - Extract I18nSubscriber
Tim Otten [Sat, 22 Mar 2014 00:06:56 +0000 (17:06 -0700)]
CRM-14370 - API Kernel - Extract I18nSubscriber

10 years agoCRM-14370 - API Kernel - Fix short-circuiting which breaks formatters/exceptions...
Tim Otten [Sat, 22 Mar 2014 01:56:23 +0000 (18:56 -0700)]
CRM-14370 - API Kernel - Fix short-circuiting which breaks formatters/exceptions-handlers

10 years agoCRM-14370 - API Kernel - DRY result formatting
Tim Otten [Fri, 21 Mar 2014 23:51:52 +0000 (16:51 -0700)]
CRM-14370 - API Kernel - DRY result formatting

10 years agoCRM-14370 - API Kernel - DRY exception-handling; fix inconsistencies
Tim Otten [Fri, 21 Mar 2014 23:28:12 +0000 (16:28 -0700)]
CRM-14370 - API Kernel - DRY exception-handling; fix inconsistencies

10 years agoCRM-14370 - API Kernel - Extract XDebugSubscriber
Tim Otten [Fri, 21 Mar 2014 05:55:35 +0000 (22:55 -0700)]
CRM-14370 - API Kernel - Extract XDebugSubscriber

10 years agoCRM-14370 - API Kernel - Extract TransactionSubscriber
Tim Otten [Fri, 21 Mar 2014 05:44:47 +0000 (22:44 -0700)]
CRM-14370 - API Kernel - Extract TransactionSubscriber

10 years agoCRM-14370 - API Kernel - Dispatch events
Tim Otten [Fri, 21 Mar 2014 05:34:30 +0000 (22:34 -0700)]
CRM-14370 - API Kernel - Dispatch events

10 years agoCRM-14370 - civicrm_api, CiviUnitTestCase - Move main logic to Civi\API\Kernel
Tim Otten [Fri, 21 Mar 2014 04:24:41 +0000 (21:24 -0700)]
CRM-14370 - civicrm_api, CiviUnitTestCase - Move main logic to Civi\API\Kernel

Also: Allow test-classes to use different API handlers (eg $apiKernel->run() instead of civicrm_api())

Conflicts:

Civi/Core/Container.php

10 years agoCRM-14370 - Backport container and classloader (from doctrine => master)
Tim Otten [Sun, 6 Apr 2014 04:10:55 +0000 (21:10 -0700)]
CRM-14370 - Backport container and classloader (from doctrine => master)

10 years agoSyntaxConformanceTest - Fix for entities which don't support delete
Tim Otten [Mon, 24 Mar 2014 23:24:40 +0000 (16:24 -0700)]
SyntaxConformanceTest - Fix for entities which don't support delete

10 years agoMerge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-04-04-00-48-43
Tim Otten [Fri, 4 Apr 2014 07:48:52 +0000 (00:48 -0700)]
Merge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-04-04-00-48-43

10 years agoMerge pull request #2820 from totten/4.4-tz-opt
Tim Otten [Fri, 4 Apr 2014 07:48:17 +0000 (00:48 -0700)]
Merge pull request #2820 from totten/4.4-tz-opt

CRM-14423 - CiviUnitTestCase - Only run env checks, not security checks, during unit-tests.

10 years agoCRM-14423 - CiviUnitTestCase - Only run env checks, not security checks, during unit...
Tim Otten [Fri, 4 Apr 2014 07:39:03 +0000 (00:39 -0700)]
CRM-14423 - CiviUnitTestCase - Only run env checks, not security checks, during unit-tests.

The security checks are more I/O intensive.

10 years agoMerge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-04-04-00-08-28
Tim Otten [Fri, 4 Apr 2014 07:09:06 +0000 (00:09 -0700)]
Merge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-04-04-00-08-28

Conflicts:
CRM/Core/Page.php

10 years agoMerge pull request #2819 from totten/4.4-tz-alert
Tim Otten [Fri, 4 Apr 2014 07:08:17 +0000 (00:08 -0700)]
Merge pull request #2819 from totten/4.4-tz-alert

CRM-14423 - Alert admins/developers if env is misconfigured

10 years agoMerge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-04-03-23-46-36
Tim Otten [Fri, 4 Apr 2014 07:07:02 +0000 (00:07 -0700)]
Merge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-04-03-23-46-36

Conflicts:
CRM/Activity/Page/AJAX.php
CRM/Member/Form/Membership.php
js/rest.js
templates/CRM/Campaign/Form/Task/Interview.tpl

10 years agoCRM-14423 - Run env checks before executing tests
Tim Otten [Fri, 4 Apr 2014 05:16:10 +0000 (22:16 -0700)]
CRM-14423 - Run env checks before executing tests

10 years agoCRM-14423 - CRM_Utils_Check_Env - Add check for other environmental configuration...
Tim Otten [Fri, 4 Apr 2014 04:37:58 +0000 (21:37 -0700)]
CRM-14423 - CRM_Utils_Check_Env - Add check for other environmental configuration issues

10 years agoCRM-14423 - Extract class CRM_Utils_Check from CRM_Utils_Check_Security
Tim Otten [Fri, 4 Apr 2014 04:36:48 +0000 (21:36 -0700)]
CRM-14423 - Extract class CRM_Utils_Check from CRM_Utils_Check_Security

10 years agoMerge pull request #2818 from davecivicrm/CRM-14417
Dave Greenberg [Fri, 4 Apr 2014 03:15:17 +0000 (20:15 -0700)]
Merge pull request #2818 from davecivicrm/CRM-14417

CRM-14417 - Remove all non-relevant statuses from the contribution statu...

10 years agoCRM-14417 - Remove all non-relevant statuses from the contribution status drop-down...
Dave Greenberg [Fri, 4 Apr 2014 03:13:58 +0000 (20:13 -0700)]
CRM-14417 - Remove all non-relevant statuses from the contribution status drop-down when creating a new event registration.

----------------------------------------
* CRM-14417:
  http://issues.civicrm.org/jira/browse/CRM-14417

10 years agoMerge pull request #2817 from colemanw/custom
colemanw [Thu, 3 Apr 2014 23:16:04 +0000 (19:16 -0400)]
Merge pull request #2817 from colemanw/custom

HR-322 - Ensure customFieldOptions hook is always called for custom fields

10 years agoHR-322 - Ensure customFieldOptions hook is always called for custom fields
Coleman Watts [Thu, 3 Apr 2014 23:13:37 +0000 (19:13 -0400)]
HR-322 - Ensure customFieldOptions hook is always called for custom fields

10 years agoMerge pull request #2816 from totten/master-grouporgtest
Tim Otten [Thu, 3 Apr 2014 21:44:34 +0000 (14:44 -0700)]
Merge pull request #2816 from totten/master-grouporgtest

api_v3_GroupOrganizationTest - Fix error

10 years agoapi_v3_GroupOrganizationTest - Fix error
Tim Otten [Thu, 3 Apr 2014 21:42:10 +0000 (14:42 -0700)]
api_v3_GroupOrganizationTest - Fix error

Was producing error because expression
($result['values'][0]['organization_id']) was invalid.  The test content
didn't meet the description/name and seemed weird.

10 years agoCRM-14288 - Remove obsolete custom field hack
Coleman Watts [Thu, 3 Apr 2014 21:03:13 +0000 (17:03 -0400)]
CRM-14288 - Remove obsolete custom field hack

10 years agoMerge pull request #2793 from monishdeb/HR-322
colemanw [Thu, 3 Apr 2014 19:41:16 +0000 (15:41 -0400)]
Merge pull request #2793 from monishdeb/HR-322

HR-322, extend customFieldOptions hook to support Select options buildup with no associated option group

10 years agoMerge pull request #2812 from eileenmcnaughton/CRM-14220
colemanw [Thu, 3 Apr 2014 19:34:35 +0000 (15:34 -0400)]
Merge pull request #2812 from eileenmcnaughton/CRM-14220

Crm 14220 & CRM-14419 api enotice fix & extra param

10 years agoMerge pull request #2799 from PoonamNalawade/HR_321
colemanw [Thu, 3 Apr 2014 19:33:23 +0000 (15:33 -0400)]
Merge pull request #2799 from PoonamNalawade/HR_321

--HR-321 Simplify case-activity forms and add case_status as a url param

10 years agoUpdate comments
Coleman Watts [Thu, 3 Apr 2014 19:31:39 +0000 (15:31 -0400)]
Update comments

10 years agoMerge pull request #2815 from colemanw/js
colemanw [Thu, 3 Apr 2014 19:16:56 +0000 (15:16 -0400)]
Merge pull request #2815 from colemanw/js

Js popup fixes

10 years agoCRM-13863 - Improve buffering of crmPopup events
Coleman Watts [Thu, 3 Apr 2014 19:11:52 +0000 (15:11 -0400)]
CRM-13863 - Improve buffering of crmPopup events

10 years agoFix js popup bug
Coleman Watts [Thu, 3 Apr 2014 19:11:08 +0000 (15:11 -0400)]
Fix js popup bug

10 years agoMerge pull request #2814 from jitendrapurohit/Webtest_Fix
colemanw [Thu, 3 Apr 2014 18:04:22 +0000 (14:04 -0400)]
Merge pull request #2814 from jitendrapurohit/Webtest_Fix

Web Test Fix

10 years agoMerge pull request #2784 from mepps/add-phone-to-relationship-report
Dave Greenberg [Thu, 3 Apr 2014 17:40:30 +0000 (10:40 -0700)]
Merge pull request #2784 from mepps/add-phone-to-relationship-report

Added phone number to relationship report

10 years agoMerge pull request #2810 from pratik-joshi/crm-14379-fix
Dave Greenberg [Thu, 3 Apr 2014 17:26:25 +0000 (10:26 -0700)]
Merge pull request #2810 from pratik-joshi/crm-14379-fix

CRM-14379

10 years agoMerge pull request #2811 from pratik-joshi/CRM-14342
Dave Greenberg [Thu, 3 Apr 2014 17:18:39 +0000 (10:18 -0700)]
Merge pull request #2811 from pratik-joshi/CRM-14342

CRM-14342 : introduced generalized assignProfiles function to be used in confirm and thank you pages

10 years agoWeb Test Fix
jitendrapurohit [Thu, 3 Apr 2014 15:02:08 +0000 (20:32 +0530)]
Web Test Fix

10 years agoCRM-14419 - e-notice on activity.getcount when contact_id is not passed in
Eileen McNaughton [Thu, 3 Apr 2014 08:13:06 +0000 (21:13 +1300)]
CRM-14419 - e-notice on activity.getcount when contact_id is not passed in

10 years agoCRM-14420 - api contribution.completetransaction should accept 'trxn_id' as a param
Eileen McNaughton [Thu, 3 Apr 2014 10:39:21 +0000 (23:39 +1300)]
CRM-14420 - api contribution.completetransaction should accept 'trxn_id' as a param

10 years agoCRM-14342 : introduced generalized assignProfiles function to be used in confirm...
Pratik Joshi [Thu, 3 Apr 2014 11:04:20 +0000 (16:34 +0530)]
CRM-14342 : introduced generalized assignProfiles function to be used in confirm and thank you pages

10 years agoMerge pull request #2804 from atif-shaikh/webtest_fixes
pratik-joshi [Thu, 3 Apr 2014 06:11:57 +0000 (11:41 +0530)]
Merge pull request #2804 from atif-shaikh/webtest_fixes

Webtest Fix

10 years ago--HR-321 Changed label
Poonam [Thu, 3 Apr 2014 06:01:07 +0000 (11:31 +0530)]
--HR-321 Changed label

10 years ago--HR-321 Simplify case-activity forms and add case_status as a url param
Poonam [Wed, 2 Apr 2014 06:16:50 +0000 (11:46 +0530)]
--HR-321 Simplify case-activity forms and add case_status as a url param

10 years agoCRM-14379
Pratik Joshi [Thu, 3 Apr 2014 05:42:39 +0000 (11:12 +0530)]
CRM-14379

10 years agoMerge pull request #2808 from colemanw/popups
colemanw [Thu, 3 Apr 2014 01:01:24 +0000 (21:01 -0400)]
Merge pull request #2808 from colemanw/popups

popup/ajax work

10 years agoCRM-13966 - Refactor ScheduleReminders tokeninput to select2
Coleman Watts [Wed, 2 Apr 2014 21:33:42 +0000 (17:33 -0400)]
CRM-13966 - Refactor ScheduleReminders tokeninput to select2

10 years agoCRM-13966 - Fix gitlist api bug
Coleman Watts [Wed, 2 Apr 2014 21:32:52 +0000 (17:32 -0400)]
CRM-13966 - Fix gitlist api bug

10 years agoCRM-13966 - Refactor activityToCase tokeninput to select2
Coleman Watts [Wed, 2 Apr 2014 19:08:09 +0000 (15:08 -0400)]
CRM-13966 - Refactor activityToCase tokeninput to select2

10 years agoCRM-13863 - Add CRM.refreshParent helper
Coleman Watts [Wed, 2 Apr 2014 18:36:12 +0000 (14:36 -0400)]
CRM-13863 - Add CRM.refreshParent helper

10 years agoMerge pull request #2807 from colemanw/popups
colemanw [Wed, 2 Apr 2014 15:49:47 +0000 (11:49 -0400)]
Merge pull request #2807 from colemanw/popups

CRM-13863 - Fix for save & new

10 years agoFix reference to crmSnippet data
Coleman Watts [Wed, 2 Apr 2014 15:49:13 +0000 (11:49 -0400)]
Fix reference to crmSnippet data

10 years agoCRM-13863 - Fix for save & new - force reset of original url
Coleman Watts [Wed, 2 Apr 2014 15:48:50 +0000 (11:48 -0400)]
CRM-13863 - Fix for save & new - force reset of original url

10 years agoCRM-13863 - Fix for save & new - buffer the crmPopupFormSuccess event
Coleman Watts [Wed, 2 Apr 2014 15:41:13 +0000 (11:41 -0400)]
CRM-13863 - Fix for save & new - buffer the crmPopupFormSuccess event

10 years agoMerge pull request #2806 from jitendrapurohit/Web_Test_Fix
colemanw [Wed, 2 Apr 2014 15:04:24 +0000 (11:04 -0400)]
Merge pull request #2806 from jitendrapurohit/Web_Test_Fix

Web Test Fix

10 years agoWeb Test Fix
jitendrapurohit [Wed, 2 Apr 2014 14:48:36 +0000 (20:18 +0530)]
Web Test Fix

10 years agoWebtest Fix
Atif Shaikh [Wed, 2 Apr 2014 13:59:02 +0000 (19:29 +0530)]
Webtest Fix

10 years agoMerge pull request #2802 from atif-shaikh/UpgradeFix
Kurund Jalmi [Wed, 2 Apr 2014 12:24:38 +0000 (17:54 +0530)]
Merge pull request #2802 from atif-shaikh/UpgradeFix

Upgrade Fix from 4.4 to 4.5

10 years agoUpgrade Fix from 4.4 to 4.5
Atif Shaikh [Wed, 2 Apr 2014 11:29:32 +0000 (16:59 +0530)]
Upgrade Fix from 4.4 to 4.5

10 years agoHR-322 minor change
monishdeb [Wed, 2 Apr 2014 10:54:57 +0000 (16:24 +0530)]
HR-322 minor change

10 years agoLocalize dashboard text
Coleman Watts [Tue, 1 Apr 2014 23:50:33 +0000 (19:50 -0400)]
Localize dashboard text

10 years agoMerge pull request #2797 from colemanw/master
colemanw [Tue, 1 Apr 2014 23:46:23 +0000 (19:46 -0400)]
Merge pull request #2797 from colemanw/master

Move dashboard.css out of packages and fix icon css

10 years agoMove dashboard.css out of packages and fix icon css
Coleman Watts [Tue, 1 Apr 2014 21:52:52 +0000 (17:52 -0400)]
Move dashboard.css out of packages and fix icon css

10 years agoMerge pull request #2781 from monishdeb/CRM-13981
Dave Greenberg [Tue, 1 Apr 2014 17:38:42 +0000 (10:38 -0700)]
Merge pull request #2781 from monishdeb/CRM-13981

CRM-13981 multilingual fix

10 years agoMerge pull request #2772 from monishdeb/CRM-14377
Dave Greenberg [Tue, 1 Apr 2014 17:36:42 +0000 (10:36 -0700)]
Merge pull request #2772 from monishdeb/CRM-14377

CRM-14377 fix

10 years agoMerge pull request #2795 from jitendrapurohit/APITestHandling
colemanw [Tue, 1 Apr 2014 17:10:02 +0000 (13:10 -0400)]
Merge pull request #2795 from jitendrapurohit/APITestHandling

SyntaxConformanceTest handling For Encoding and Decoding

10 years agoMerge pull request #2686 from eileenmcnaughton/CRM-14148
colemanw [Tue, 1 Apr 2014 17:07:48 +0000 (13:07 -0400)]
Merge pull request #2686 from eileenmcnaughton/CRM-14148

CRM-14148 fix half hour timezones for d7

10 years agoMerge branch 'rcsheets-docstring-cleanup'
Coleman Watts [Tue, 1 Apr 2014 17:06:57 +0000 (13:06 -0400)]
Merge branch 'rcsheets-docstring-cleanup'

Conflicts:
CRM/Utils/Array.php

10 years agoIcon tweak
Coleman Watts [Tue, 1 Apr 2014 17:04:49 +0000 (13:04 -0400)]
Icon tweak

10 years agoMerge pull request #2747 from colemanw/4.4
colemanw [Tue, 1 Apr 2014 16:38:25 +0000 (12:38 -0400)]
Merge pull request #2747 from colemanw/4.4

Backport CRM.api3 to 4.4

10 years agoMerge pull request #2791 from eileenmcnaughton/CRM-14399-master
colemanw [Tue, 1 Apr 2014 16:37:43 +0000 (12:37 -0400)]
Merge pull request #2791 from eileenmcnaughton/CRM-14399-master

CRM-14399 fix test, add right number of extra params

10 years agoMerge pull request #2796 from colemanw/master
colemanw [Tue, 1 Apr 2014 16:23:12 +0000 (12:23 -0400)]
Merge pull request #2796 from colemanw/master

Dialog & select2 improvements

10 years agoDialog & select2 improvements
Coleman Watts [Tue, 1 Apr 2014 16:21:33 +0000 (12:21 -0400)]
Dialog & select2 improvements

10 years agoSyntaxConformanceTest handling Encoding and Decoding
jitendrapurohit [Tue, 1 Apr 2014 14:15:43 +0000 (19:45 +0530)]
SyntaxConformanceTest handling Encoding and Decoding

10 years agoHR-322, extend customFieldOptions hook to support Select options buildup with no...
monishdeb [Tue, 1 Apr 2014 10:38:05 +0000 (16:08 +0530)]
HR-322, extend customFieldOptions hook to support Select options buildup with no associate option group

10 years agoCRM-14399 fix test, add right number of extra params
Eileen McNaughton [Tue, 1 Apr 2014 07:51:13 +0000 (20:51 +1300)]
CRM-14399 fix test, add right number of extra params

10 years agoMerge pull request #2790 from eileenmcnaughton/CRM-14399-master
Tim Otten [Tue, 1 Apr 2014 02:09:44 +0000 (19:09 -0700)]
Merge pull request #2790 from eileenmcnaughton/CRM-14399-master

CRM-14399 4.5 signature for hook

10 years agoCRM-14399 4.5 signature for hook (somehow got reverted when I prepared the PR I guess)
Eileen McNaughton [Tue, 1 Apr 2014 00:40:35 +0000 (13:40 +1300)]
CRM-14399 4.5 signature for hook (somehow got reverted when I prepared the PR I guess)

10 years agoMerge pull request #2789 from eileenmcnaughton/CRM-14399-master
Tim Otten [Tue, 1 Apr 2014 00:20:52 +0000 (17:20 -0700)]
Merge pull request #2789 from eileenmcnaughton/CRM-14399-master

CRM-14399 this is probably safer & less like to wind up @colemanw than t...

10 years agoCRM-14399 this is probably safer & less like to wind up @colemanw than the prev versi...
Eileen McNaughton [Tue, 1 Apr 2014 00:17:50 +0000 (13:17 +1300)]
CRM-14399 this is probably safer & less like to wind up @colemanw than the prev version on this line

10 years agoMerge pull request #2785 from eileenmcnaughton/CRM-14399-master
Tim Otten [Tue, 1 Apr 2014 00:15:53 +0000 (17:15 -0700)]
Merge pull request #2785 from eileenmcnaughton/CRM-14399-master

CRM-14399 add alterCalculatedMembershipStatus hook

10 years agoCRM-14399 one more call to getMembershipStatusByDate + update add function call to...
Eileen McNaughton [Tue, 1 Apr 2014 00:12:09 +0000 (13:12 +1300)]
CRM-14399 one more call to getMembershipStatusByDate + update add function call to be more standard

10 years agoMerge pull request #2787 from totten/master-gencode-escape
Tim Otten [Mon, 31 Mar 2014 22:33:34 +0000 (15:33 -0700)]
Merge pull request #2787 from totten/master-gencode-escape

GenCode - Apply SQL-escaping to table comments

10 years agoGenCode - Apply SQL-escaping to table comments
Tim Otten [Mon, 31 Mar 2014 22:31:27 +0000 (15:31 -0700)]
GenCode - Apply SQL-escaping to table comments

Fix regression stemming from 9e64deca

10 years agoCRM-14399 add alterCalculatedMembershipStatus hook
Eileen McNaughton [Fri, 28 Mar 2014 03:58:49 +0000 (16:58 +1300)]
CRM-14399 add alterCalculatedMembershipStatus hook

Conflicts:
api/v3/MembershipStatus.php