Skip to content

Commit

Permalink
Allow adding tags to ECK entities
Browse files Browse the repository at this point in the history
  • Loading branch information
jensschuppe committed May 19, 2022
1 parent b768225 commit 5baee26
Show file tree
Hide file tree
Showing 5 changed files with 118 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CRM/Eck/Page/Entity/TabHeader.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,14 @@ public static function process(&$page) {
),
] + $default;

$tabs['tags'] = [
'title' => ts('Tags'),
'link' => CRM_Utils_System::url(
'civicrm/eck/entity/tag',
"reset=1&type={$entityType['name']}&id={$entityID}"
),
] + $default;

// see if any other modules want to add any tabs
// note: status of 'valid' flag of any injected tab, needs to be taken care in the hook implementation.
CRM_Utils_Hook::tabset(
Expand Down
67 changes: 67 additions & 0 deletions CRM/Eck/Page/Entity/Tag.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<?php
/*-------------------------------------------------------+
| CiviCRM Entity Construction Kit |
| Copyright (C) 2022 SYSTOPIA |
| Author: J. Schuppe ([email protected]) |
+--------------------------------------------------------+
| This program is released as free software under the |
| Affero GPL license. You can redistribute it and/or |
| modify it under the terms of this license which you |
| can read by viewing the included agpl.txt or online |
| at www.gnu.org/licenses/agpl.html. Removal of this |
| copyright header is strictly prohibited without |
| written permission from the original author(s). |
+--------------------------------------------------------*/

use CRM_Eck_ExtensionUtil as E;

class CRM_Eck_Page_Entity_Tag extends CRM_Core_Page {

/**
* Called when action is browse.
*/
public function browse() {
$entity_types = array_column(CRM_Eck_BAO_EckEntityType::getEntityTypes(), NULL, 'name');

$controller = new CRM_Core_Controller_Simple('CRM_Tag_Form_Tag', ts('Entity Tags'), $this->_action);
$controller->setEmbedded(TRUE);
$controller->reset();
$controller->set('entityTable', $entity_types[$this->_entityType]['table_name']);
$controller->set('entityID', $this->_entityId);
$controller->process();
$controller->run();
}

public function preProcess() {
$this->_entityType = CRM_Utils_Request::retrieve('type', 'String', $this, TRUE);
$this->_entityId = CRM_Utils_Request::retrieve('id', 'Positive', $this, TRUE);
$this->assign('entityType', $this->_entityType);
$this->assign('entityId', $this->_entityId);

/**
* TODO:
* Check permission for editing ECK entity tags.
* @see CRM_Contact_Page_View::checkUserPermission()
* For now, allow editing for all users.
*/
$this->assign('permission', 'edit');

$this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'browse');
$this->assign('action', $this->_action);
}

/**
* the main function that is called when the page loads
* it decides the which action has to be taken for the page.
*
* @return null
*/
public function run() {
$this->preProcess();

$this->browse();

return parent::run();
}

}
20 changes: 20 additions & 0 deletions eck.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,26 @@ function eck_civicrm_managed(&$entities, $modules = NULL) {
],
],
];
$entities[] = [
'module' => E::LONG_NAME,
'name' => 'tag_used_for:' . $type['name'],
'entity' => 'OptionValue',
'cleanup' => 'always',
'update' => 'always',
'params' => [
'version' => 4,
'values' => [
'option_group_id.name' => 'tag_used_for',
'label' => $type['label'],
'value' => $type['table_name'],
'name' => $type['entity_name'],
'description' => NULL,
'is_reserved' => TRUE,
'is_active' => TRUE,
'grouping' => NULL,
],
],
];
}
}

Expand Down
17 changes: 17 additions & 0 deletions templates/CRM/Eck/Page/Entity/Tag.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{*-------------------------------------------------------+
| CiviCRM Entity Construction Kit |
| Copyright (C) 2022 SYSTOPIA |
| Author: J. Schuppe ([email protected]) |
+--------------------------------------------------------+
| This program is released as free software under the |
| Affero GPL license. You can redistribute it and/or |
| modify it under the terms of this license which you |
| can read by viewing the included agpl.txt or online |
| at www.gnu.org/licenses/agpl.html. Removal of this |
| copyright header is strictly prohibited without |
| written permission from the original author(s). |
+--------------------------------------------------------*}

{crmScope extensionKey='de.systopia.eck'}
{include file="CRM/Tag/Form/Tag.tpl"}
{/crmScope}
6 changes: 6 additions & 0 deletions xml/Menu/eck.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@
<title>Entity</title>
<access_arguments>access CiviCRM</access_arguments>
</item>
<item>
<path>civicrm/eck/entity/tag</path>
<page_callback>CRM_Eck_Page_Entity_Tag</page_callback>
<title>Entity Tags</title>
<access_arguments>access CiviCRM</access_arguments>
</item>
<item>
<path>civicrm/admin/eck/entity</path>
<page_callback>CRM_Eck_Form_Entity</page_callback>
Expand Down

0 comments on commit 5baee26

Please sign in to comment.