-
-
Notifications
You must be signed in to change notification settings - Fork 826
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace json with .php files and run civix export
- Loading branch information
1 parent
9a9688d
commit 8387a9a
Showing
6 changed files
with
103 additions
and
118 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
use CRM_CivicrmAdminUi_ExtensionUtil as E; | ||
|
||
return [ | ||
'type' => 'search', | ||
'title' => E::ts('Memberships'), | ||
'placement' => [ | ||
'contact_summary_tab', | ||
], | ||
'summary_contact_type' => [ | ||
'Organization', | ||
], | ||
'summary_weight' => 30, | ||
'icon' => 'fa-id-badge', | ||
'permission' => [ | ||
'access CiviCRM', | ||
'access CiviMember', | ||
], | ||
'search_displays' => [ | ||
'Contact_Summary_Memberships.Contact_Summary_Memberships_Active', | ||
'Contact_Summary_Memberships.Contact_Summary_Memberships_Inactive', | ||
'Contact_Summary_Membership_Type.Contact_Summary_Membership_Type', | ||
], | ||
]; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
use CRM_CivicrmAdminUi_ExtensionUtil as E; | ||
|
||
return [ | ||
'type' => 'search', | ||
'title' => E::ts('Memberships'), | ||
'placement' => [ | ||
'contact_summary_tab', | ||
], | ||
'summary_contact_type' => [ | ||
'Individual', | ||
'Household', | ||
], | ||
'summary_weight' => 30, | ||
'icon' => 'fa-id-badge', | ||
'permission' => [ | ||
'access CiviCRM', | ||
'access CiviMember', | ||
], | ||
'search_displays' => [ | ||
'Contact_Summary_Memberships.Contact_Summary_Memberships_Active', | ||
'Contact_Summary_Memberships.Contact_Summary_Memberships_Inactive', | ||
], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.