Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dataprocessor
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
Extensions
dataprocessor
Commits
fb28125e
Commit
fb28125e
authored
4 years ago
by
jaapjansma
Browse files
Options
Downloads
Patches
Plain Diff
Added data source for note field
parent
a36f6ed1
No related branches found
Branches containing commit
Tags
1.23.4
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
Civi/DataProcessor/Factory.php
+1
-0
1 addition, 0 deletions
Civi/DataProcessor/Factory.php
Civi/DataProcessor/Source/Note/NoteSource.php
+33
-0
33 additions, 0 deletions
Civi/DataProcessor/Source/Note/NoteSource.php
with
35 additions
and
0 deletions
CHANGELOG.md
+
1
−
0
View file @
fb28125e
...
...
@@ -4,6 +4,7 @@
*
Changed Field Specification to allow more advanced mysql functions.
*
Added Event Filter.
*
Added Formatted Address field.
*
Added data source for note
# Version 1.6.0
...
...
This diff is collapsed.
Click to expand it.
Civi/DataProcessor/Factory.php
+
1
−
0
View file @
fb28125e
...
...
@@ -122,6 +122,7 @@ class Factory {
$this
->
addDataSource
(
'primary_membership'
,
new
Definition
(
'Civi\DataProcessor\Source\Member\PrimaryMembershipSource'
),
E
::
ts
(
'Primary Membership (retrieve the owner membership id'
));
$this
->
addDataSource
(
'membership_type'
,
new
Definition
(
'Civi\DataProcessor\Source\Member\MembershipTypeSource'
),
E
::
ts
(
'Membership Type'
));
$this
->
addDataSource
(
'membership_status'
,
new
Definition
(
'Civi\DataProcessor\Source\Member\MembershipStatusSource'
),
E
::
ts
(
'Membership Status'
));
$this
->
addDataSource
(
'note'
,
new
Definition
(
'Civi\DataProcessor\Source\Note\NoteSource'
),
E
::
ts
(
'Note'
));
$this
->
addDataSource
(
'csv'
,
new
Definition
(
'Civi\DataProcessor\Source\CSV'
),
E
::
ts
(
'CSV File'
));
$this
->
addDataSource
(
'sqltable'
,
new
Definition
(
'Civi\DataProcessor\Source\SQLTable'
),
E
::
ts
(
'SQL Table'
));
$this
->
addOutput
(
'api'
,
new
Definition
(
'Civi\DataProcessor\Output\Api'
),
E
::
ts
(
'API'
));
...
...
This diff is collapsed.
Click to expand it.
Civi/DataProcessor/Source/Note/NoteSource.php
0 → 100644
+
33
−
0
View file @
fb28125e
<?php
/**
* @author Jaap Jansma <jaap.jansma@civicoop.org>
* @license AGPL-3.0
*/
namespace
Civi\DataProcessor\Source\Note
;
use
Civi\DataProcessor\Source\AbstractCivicrmEntitySource
;
use
CRM_Dataprocessor_ExtensionUtil
as
E
;
class
NoteSource
extends
AbstractCivicrmEntitySource
{
/**
* Returns the entity name
*
* @return String
*/
protected
function
getEntity
()
{
return
'Note'
;
}
/**
* Returns the table name of this entity
*
* @return String
*/
protected
function
getTable
()
{
return
'civicrm_note'
;
}
}
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