Your IP : 216.73.216.240
<form id="acym_form" action="<?php echo acym_completeLink(acym_getVar('cmd', 'ctrl')); ?>" method="post" name="acyForm" data-abide novalidate>
<input type="hidden" name="id" value="<?php echo !empty($data['automation']->id) ? intval($data['automation']->id) : ''; ?>">
<input type="hidden" name="stepAutomationId" value="<?php echo empty($data['step']->id) ? '' : intval($data['step']->id); ?>">
<input type="hidden" name="automation[admin]" value="<?php echo empty($data['automation']->admin) ? '' : intval($data['automation']->admin); ?>">
<div class="acym__content cell grid-x" id="acym__automation__info">
<?php
if (empty($data['automation']->id)) {
$data['workflowHelper']->disabledAfter = 'info';
}
echo $data['workflowHelper']->display($this->steps, $this->step);
?>
<div class="cell grid-x grid-margin-x">
<div class="medium-12 small-12 cell grid-x acym__content acym__automation__info__first margin-top-2 margin-y">
<div class="cell medium-6">
<label for="automation_name"><?php echo acym_translation('ACYM_NAME'); ?></label>
<?php if (empty($data['automation']->admin)) { ?>
<input required
type="text"
id="automation_name"
name="automation[name]"
value="<?php echo !empty($data['automation']->name) ? acym_escape($data['automation']->name) : ''; ?>">
<?php } else { ?>
<input required
type="text"
id="automation_name"
name="automation[name]"
disabled
value="<?php echo acym_escape(acym_translation($data['automation']->name)); ?>">
<?php } ?>
</div>
<div class="cell medium-shrink grid-x acym_vcenter margin-left-2" <?php echo empty($data['automation']->id) ? 'style="display: none"' : ''; ?>>
<?php echo acym_switch('automation[active]', $data['automation']->active, acym_translation('ACYM_ACTIVE')); ?>
</div>
<label class="cell">
<h6 id="acym__automation__info__desc__button" class="cursor-pointer">
<?php echo acym_translation('ACYM_DESCRIPTION'); ?>
<i class="acymicon-keyboard_arrow_down"></i>
</h6>
<?php if (!empty($data['automation']->admin)) $data['automation']->description = acym_escape(acym_translation($data['automation']->description)); ?>
<textarea style="display: none"
name="automation[description]" <?php echo empty($data['automation']->admin) ? '' : 'disabled'; ?> rows="6"
class="margin-top-1"><?php echo !empty($data['automation']->description) ? acym_escape(
$data['automation']->description
) : ''; ?></textarea>
</label>
</div>
<div class="medium-12 cell grid-x acym__content acym__automation__info__trigger margin-top-2">
<div class="cell grid-x margin-bottom-2" id="acym__automation__info__choose__trigger__type">
<input type="hidden"
name="type_trigger"
value="<?php echo !empty($data['type_trigger']) ? $data['type_trigger'] : 'classic'; ?>"
id="acym__automation__trigger__type__input">
<div class="cell auto"></div>
<p id="acym__automation__info__group"
data-trigger-type="classic"
class="shrink cell <?php echo (!empty($data['type_trigger']) && $data['type_trigger'] == 'classic') ? 'selected-trigger' : (empty($data['type_trigger']) ? 'selected-trigger' : ''); ?> margin-right-2"><?php echo acym_translation(
'ACYM_CLASSIC_TRIGGER'
); ?></p>
<p id="acym__automation__info__one-user"
data-trigger-type="user"
class="shrink cell <?php echo (!empty($data['type_trigger']) && $data['type_trigger'] == 'user') ? 'selected-trigger' : ''; ?>"><?php echo acym_translation(
'ACYM_TRIGGER_BASED_ON_USER_ACTIONS'
); ?></p>
<div class="cell auto"></div>
</div>
<div class="acym__automation__info__choose__trigger cell grid-x grid-margin-x grid-margin-y"
id="acym__automation__info__choose__trigger__classic" <?php echo (!empty($data['type_trigger']) && $data['type_trigger'] == 'classic') ? '' : (empty($data['type_trigger']) ? '' : 'style="display: none"'); ?>>
<div class="cell large-6 acym__content grid-x acym__automation__draggable">
<h6 class="acym__title acym__title__secondary"><?php echo acym_translation('ACYM_ALL_TRIGGER'); ?></h6>
<div class="cell acym__automation__all-trigger__classic grid-x">
<?php foreach ($data['classic'] as $key => $classic) {
echo '<div '.(in_array(
$key,
$data['defaultValues']
) ? 'style="display: none"' : '').' class="acym__automation__trigger__droppable__classic margin-top-1 cell" data-trigger="'.acym_escape(
$key
).'"><span class="acym__automation__trigger__name">'.$classic->name.'</span><span class="acym__automation__trigger__action">'.$classic->option.'</span></div>';
} ?>
</div>
</div>
<div class="cell large-6 acym__content grid-x acym__automation__droppable__classic">
<h6 class="acym__title acym__title__secondary cell"><?php echo acym_translation('ACYM_EXECUTE_AUTOMATION'); ?></h6>
<div class="cell acym__automation__user-trigger__classic acym__automation__trigger__sortable">
<?php
if (count($data['defaultValues']) < 2) {
echo '<div class="cell margin-top-1 acym__automation__drag-here-text">'.acym_translation('ACYM_DRAG_YOUR_TRIGGERS').'</div>';
}
foreach ($data['classic'] as $key => $classic) {
if (!in_array($key, $data['defaultValues'])) continue;
?>
<div class="acym__automation__droppable__trigger margin-top-1">
<div class="acym__automation__one__trigger">
<span class="acym__automation__trigger__name"><?php echo $classic->name; ?></span>
<span class="acym__automation__trigger__action"><?php echo $classic->option; ?></span>
</div>
<i data-trigger-show="<?php echo acym_escape($key); ?>"
class="acymicon-close acym__color__red acym__automation__delete__trigger cursor-pointer"></i>
</div>
<?php
}
?>
</div>
</div>
</div>
<div class="acym__automation__info__choose__trigger cell grid-x grid-margin-x grid-margin-y"
id="acym__automation__info__choose__trigger__user" <?php echo (!empty($data['type_trigger']) && $data['type_trigger'] == 'user') ? '' : 'style="display: none"'; ?>>
<div class="cell large-6 acym__content grid-x acym__automation__draggable">
<h6 class="acym__title acym__title__secondary"><?php echo acym_translation('ACYM_ALL_TRIGGER'); ?></h6>
<div class="cell acym__automation__all-trigger__action grid-x">
<?php
foreach ($data['user'] as $key => $triggerUser) {
echo '<div '.(in_array(
$key,
$data['defaultValues']
) ? 'style="display: none"' : '').' class="acym__automation__trigger__droppable__action margin-top-1 cell" data-trigger="'.acym_escape(
$key
).'"><span class="acym__automation__trigger__name">'.$triggerUser->name.'</span><span class="acym__automation__trigger__action">'.$triggerUser->option.'</span></div>';
}
?>
</div>
</div>
<div class="cell large-6 acym__content grid-x acym__automation__droppable__action">
<h6 class="acym__title acym__title__secondary cell"><?php echo acym_translation('ACYM_EXECUTE_AUTOMATION'); ?></h6>
<div class="cell acym__automation__user-trigger__action acym__automation__trigger__sortable">
<?php
if (count($data['defaultValues']) < 2) {
echo '<div class="cell margin-top-1 acym__automation__drag-here-text">'.acym_translation('ACYM_DRAG_YOUR_TRIGGERS').'</div>';
}
foreach ($data['user'] as $key => $triggerUser) {
if (!in_array($key, $data['defaultValues'])) continue;
?>
<div class="acym__automation__droppable__trigger margin-top-1">
<div class="acym__automation__one__trigger"><span class="acym__automation__trigger__name"><?php echo $triggerUser->name; ?></span></b>
<span class="acym__automation__trigger__action"><?php echo $triggerUser->option; ?></span>
</div>
<i data-trigger-show="<?php echo acym_escape($key); ?>"
class="acymicon-close acym__color__red acym__automation__delete__trigger cursor-pointer"></i>
</div>
<?php
}
?>
</div>
</div>
</div>
</div>
<div class="cell grid-x margin-top-2">
<div class="cell medium-shrink medium-margin-bottom-0 margin-bottom-1 text-left">
<?php echo acym_backToListing("automation"); ?>
</div>
<div class="cell medium-auto grid-x grid-margin-x text-right">
<div class="cell auto"></div>
<button class="cell medium-shrink button medium-margin-bottom-0 margin-bottom-1 acy_button_submit button-secondary"
type="button"
data-task="saveExitInfo"><?php echo acym_translation('ACYM_SAVE_EXIT'); ?></button>
<button class="cell medium-shrink button margin-bottom-0 acy_button_submit" type="button" data-task="saveInfo">
<?php echo acym_translation('ACYM_SAVE_CONTINUE'); ?>
</button>
</div>
</div>
</div>
</div>
<?php acym_formOptions(); ?>
</form>