Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Creation of dynamic property in VTCreateEntityTask.php #17235

Open
wants to merge 1 commit into
base: developer
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions modules/com_vtiger_workflow/tasks/VTCreateEntityTask.php
Expand Up @@ -13,6 +13,18 @@
class VTCreateEntityTask extends VTTask
{
public $executeImmediately = true;
/** @var string The name of the module for which to create a record. */
public $entity_type;
/** @var string Field value mapping. */
public $field_value_mapping;
/** @var string Field mapping between modules. */
public $mappingPanel;
/** @var int Reference field. */
public $reference_field;
/** @var string RelationI id. */
public $relationId;
/** @var string Checks if a related record exists. */
public $verifyIfExists;

public function getFieldNames()
{
Expand Down