Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
civirules
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ayduns
civirules
Commits
ccd7e459
Commit
ccd7e459
authored
10 years ago
by
Erik Hommel
Browse files
Options
Downloads
Patches
Plain Diff
change condition_params from BLOB to TEXT
parent
afd60d0b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CRM/Civirules/DAO/RuleCondition.php
+1
-1
1 addition, 1 deletion
CRM/Civirules/DAO/RuleCondition.php
sql/createCiviruleRuleCondition.sql
+1
-1
1 addition, 1 deletion
sql/createCiviruleRuleCondition.sql
xml/Menu/civirules.xml
+6
-6
6 additions, 6 deletions
xml/Menu/civirules.xml
with
8 additions
and
8 deletions
CRM/Civirules/DAO/RuleCondition.php
+
1
−
1
View file @
ccd7e459
...
...
@@ -49,7 +49,7 @@ class CRM_Civirules_DAO_RuleCondition extends CRM_Core_DAO {
),
'condition_params'
=>
array
(
'name'
=>
'condition_params'
,
'type'
=>
CRM_Utils_Type
::
T_
BLOB
'type'
=>
CRM_Utils_Type
::
T_
TEXT
),
'is_active'
=>
array
(
'name'
=>
'is_active'
,
...
...
This diff is collapsed.
Click to expand it.
sql/createCiviruleRuleCondition.sql
+
1
−
1
View file @
ccd7e459
...
...
@@ -3,7 +3,7 @@ CREATE TABLE IF NOT EXISTS civirule_rule_condition (
rule_id
INT
UNSIGNED
NULL
,
condition_link
VARCHAR
(
3
)
NULL
,
condition_id
INT
UNSIGNED
NULL
,
condition_params
BLOB
,
condition_params
TEXT
,
is_active
TINYINT
NULL
DEFAULT
1
,
PRIMARY
KEY
(
id
),
UNIQUE
INDEX
id_UNIQUE
(
id
ASC
),
...
...
This diff is collapsed.
Click to expand it.
xml/Menu/civirules.xml
+
6
−
6
View file @
ccd7e459
...
...
@@ -24,10 +24,10 @@
<title>
RuleAction
</title>
<access_arguments>
access CiviCRM
</access_arguments>
</item>
<item>
<path>
civicrm/civirule/form/condition/datacomparison
</path>
<page_callback>
CRM_CivirulesConditions_Form_ValueComparison
</page_callback>
<title>
Value comparison
</title>
<access_arguments>
access CiviCRM
</access_arguments>
</item>
<item>
<path>
civicrm/civirule/form/condition/datacomparison
</path>
<page_callback>
CRM_CivirulesConditions_Form_ValueComparison
</page_callback>
<title>
Value comparison
</title>
<access_arguments>
access CiviCRM
</access_arguments>
</item>
</menu>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment