| 1 |
<?php |
| 2 |
defined('ABSPATH') || die('Restricted Access'); |
| 3 |
?> |
| 4 |
<div class="cell grid-x margin-top-1"> |
| 5 |
<div class="cell medium-shrink medium-margin-bottom-0 margin-bottom-1"> |
| 6 |
<?php acym_backToListing(); ?> |
| 7 |
</div> |
| 8 |
<div class="cell medium-auto grid-x text-right"> |
| 9 |
<div class="cell medium-auto"></div> |
| 10 |
<?php if ($data['from'] === 'create') { ?> |
| 11 |
<button data-task="save" data-step="summary" type="submit" class="cell medium-shrink button margin-bottom-0 acy_button_submit"> |
| 12 |
<?php echo esc_html(strtoupper(acym_translation('ACYM_SAVE_CONTINUE'))); ?><i class="acymicon-chevron-right"></i> |
| 13 |
</button> |
| 14 |
<?php } else { ?> |
| 15 |
<button data-task="save" data-step="listing" type="submit" class="cell button-secondary medium-shrink button medium-margin-bottom-0 margin-right-1 acy_button_submit"> |
| 16 |
<?php echo esc_html(acym_translation('ACYM_SAVE_EXIT')); ?> |
| 17 |
</button> |
| 18 |
<button data-task="save" data-step="summary" type="submit" class="cell medium-shrink button margin-bottom-0 acy_button_submit"> |
| 19 |
<?php echo esc_html(acym_translation('ACYM_SAVE_CONTINUE')); ?><i class="acymicon-chevron-right"></i> |
| 20 |
</button> |
| 21 |
<?php } ?> |
| 22 |
</div> |
| 23 |
</div> |
| 24 |
|