# e2pdf/1.32.49/classes/model/e2pdf-action.php

E2Pdf – Export Pdf Tool for WordPress, version 1.32.49. 294 lines.

- Page: https://pluginprobe.com/plugins/e2pdf/1.32.49/code/classes/model/e2pdf-action.php
- Raw: https://pluginprobe.com/plugins/e2pdf/1.32.49/raw/classes/model/e2pdf-action.php
- Modified: 2026-09-16T08:14:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/e2pdf/1.32.49/code/classes/model/e2pdf-action.php#L10-L20`.

```php
<?php

/**
 * File: /model/e2pdf-action.php
 *
 * @package  E2Pdf
 * @license  GPLv3
 * @link     https://e2pdf.com
 */
if (!defined('ABSPATH')) {
    die('Access denied.');
}

class Model_E2pdf_Action extends Model_E2pdf_Model {

    private $extension;

    public function load($extension) {
        $this->extension = $extension;
    }

    public function process_actions($page) {
        if (!$page || !$this->extension) {
            return $page;
        }
        if (isset($page['actions']) && !empty($page['actions'])) {
            foreach ($page['actions'] as $action_key => $action) {
                $page = $this->process_action($page, $action, $action_key);
            }
        }

        if (isset($page['hidden']) && $page['hidden']) {  // phpcs:ignore Generic.CodeAnalysis.EmptyStatement.DetectedIf
        } else {
            if (!empty($page['elements'])) {
                foreach ($page['elements'] as $el_key => $el_value) {
                    if (isset($el_value['actions']) && !empty($el_value['actions'])) {
                        foreach ($el_value['actions'] as $action_key => $action) {
                            $el_value = $this->process_action($el_value, $action, $action_key);
                        }
                        $page['elements'][$el_key] = $el_value;
                        if ((isset($el_value['hidden']) && $el_value['hidden']) || ($el_value['page_id'] != $page['page_id'])) {
                            unset($page['elements'][$el_key]);
                        }
                    }
                }
            }
        }
        return $page;
    }

    public function process_global_actions($actions = array()) {
        if (!empty($actions) && $this->extension) {
            foreach ($actions as $action_key => $action) {
                if (isset($action['action'])) {
                    if ($action['action'] !== 'redirect_access_by_url') {
                        // Backward Compatibility
                        if (!isset($action['property'])) {
                            if (false !== strpos($action['action'], 'restrict_')) {
                                $action['property'] = 'disable';
                            } else {
                                $action['property'] = 'enable';
                            }
                            $action['action'] = str_replace(
                                    [
                                        'restrict_process_shortcode_',
                                        'process_shortcode_',
                                        'restrict_process_',
                                        'process_',
                                        'restrict_',
                                    ], '', $action['action']
                            );
                        }
                        $action['action'] = $action['property'] . '_' . $action['action'];
                    }
                }
                $actions[$action_key] = $this->process_action($action, $action, $action_key);
            }
        }
        return $actions;
    }

    public function process_page_id($page) {
        $elements = array();
        if ($page && $this->extension) {
            if (!empty($page['elements'])) {
                foreach ($page['elements'] as $el_key => $el_value) {
                    if (isset($el_value['actions']) && !empty($el_value['actions'])) {
                        foreach ($el_value['actions'] as $action_key => $action) {
                            if ($action['action'] == 'change' && isset($action['property']) && $action['property'] == 'page_id') {
                                $el_value = $this->process_action($el_value, $action, $action_key);
                            }
                        }
                        if ($el_value['page_id'] != $page['page_id']) {
                            $elements[] = $el_value;
                        }
                    }
                }
            }
        }
        return $elements;
    }

    private function process_action($element, $action, $action_key) {
        $apply = false;
        if (isset($action['conditions']) && !empty($action['conditions'])) {
            foreach ($action['conditions'] as $condition) {
                $apply = $this->process_condition($condition);
                if ($action['apply'] == 'any' && $apply) {
                    break;
                } elseif ($action['apply'] == 'all' && !$apply) {
                    break;
                }
            }
        }
        if ($apply) {
            $element = $this->apply_action($element, $action, $action_key);
        } else {
            $element = $this->apply_else_action($element, $action);
        }
        return $element;
    }

    private function process_condition($condition) {
        $result = false;
        $if = $this->extension->render($condition['if']);
        $value = $this->extension->render($condition['value']);
        switch ($condition['condition']) {
            case '=':
                $result = $if == $value ? true : false;
                break;
            case '!=':
                $result = $if != $value ? true : false;
                break;
            case '>':
                $result = $if > $value ? true : false;
                break;
            case '>=':
                $result = $if >= $value ? true : false;
                break;
            case '<':
                $result = $if < $value ? true : false;
                break;
            case '<=':
                $result = $if <= $value ? true : false;
                break;
            case 'like':
                if (empty($value) && empty($if)) {
                    $result = true;
                } else {
                    $result = !empty($value) && strpos($if, $value) !== false ? true : false;
                }
                break;
            case 'not_like':
                if (empty($value) && empty($if)) {
                    $result = false;
                } elseif (empty($value) && !empty($if)) {
                    $result = true;
                } else {
                    $result = !empty($value) && strpos($if, $value) === false ? true : false;
                }
                break;
            case 'in_array':
                $unserialized = false;
                if (is_serialized($value)) {
                    $unserialized = $this->helper->load('convert')->unserialize($value);
                }
                // phpcs:ignore WordPress.PHP.StrictInArray.MissingTrueStrict
                $result = is_array($unserialized) && in_array($if, $unserialized) ? true : false;
                break;
            case 'not_in_array':
                $unserialized = false;
                if (is_serialized($value)) {
                    $unserialized = $this->helper->load('convert')->unserialize($value);
                }
                // phpcs:ignore WordPress.PHP.StrictInArray.MissingTrueStrict
                $result = is_array($unserialized) && in_array($if, $unserialized) ? false : true;
                break;
            case 'in_list':
                $list_if = array_map('trim', explode(',', $if));
                $list_value = array_map('trim', explode(',', $value));
                $result = !array_diff($list_if, $list_value) ? true : false;
                break;
            case 'not_in_list':
                $list_if = array_map('trim', explode(',', $if));
                $list_value = array_map('trim', explode(',', $value));
                $result = !array_diff($list_if, $list_value) ? false : true;
                break;
            case 'array_key_exists':
                $unserialized = false;
                if (is_serialized($value)) {
                    $unserialized = $this->helper->load('convert')->unserialize($value);
                }
                $result = is_array($unserialized) && array_key_exists($if, $unserialized) ? true : false;
                break;
            case 'array_key_not_exists':
                $unserialized = false;
                if (is_serialized($value)) {
                    $unserialized = $this->helper->load('convert')->unserialize($value);
                }
                $result = is_array($unserialized) && array_key_exists($if, $unserialized) ? false : true;
                break;
        }
        return $result;
    }

    private function apply_action($element, $action, $action_key) {
        if ($action['action'] == 'hide') {
            $element['hidden'] = true;
        } elseif ($action['action'] == 'show') {
            $element['hidden'] = false;
        } elseif ($action['action'] == 'merge' && $action['property']) {
            if ($action['property'] == 'value' && isset($element['element_id'])) {
                $value = isset($element[$action['property']]) ? $element[$action['property']] : '';
                $change = $value . $action['change'];
                $element[$action['property']] = $change;
            }
        } elseif ($action['action'] == 'change' && $action['property']) {
            $number_properties = array(
                'width', 'height', 'left', 'top',
            );
            $not_properties = array(
                'top', 'left', 'width', 'height', 'value', 'page_id',
            );
            if ($action['property'] == 'value') {
                $action['change'] = $this->helper->load('translator')->pre_translate($action['change'], $element['template_id'], $element['element_id'], 'value_action_' . $action_key . '_change');
                if (isset($action['format']) && $action['format'] != 'replace') {
                    if ($action['format'] == 'insert_before') {
                        $value = isset($element[$action['property']]) ? $element[$action['property']] : '';
                        $change = $action['change'] . $value;
                    } elseif ($action['format'] == 'insert_after') {
                        $value = isset($element[$action['property']]) ? $element[$action['property']] : '';
                        $change = $value . $action['change'];
                    } elseif ($action['format'] == 'search') {
                        $search = isset($action['search']) ? $action['search'] : '';
                        $replace = isset($action['change']) ? $action['change'] : '';
                        if ($search) {
                            $value = isset($element[$action['property']]) ? $element[$action['property']] : '';
                            $pre_replace = isset($action['pre_replace']) ? $action['pre_replace'] : '';
                            if ($pre_replace == 'render') {
                                $type = isset($element['type']) ? $element['type'] : '';
                                if (!isset($element['rendered'])) {
                                    if (in_array($type, array('e2pdf-html', 'e2pdf-page-number'), true)) {
                                        $value = $this->helper->load('filter')->filter_html_tags($this->extension->render($value, $element));
                                    } else {
                                        $value = $this->extension->render($value, $element);
                                    }
                                }
                                if (in_array($type, array('e2pdf-html', 'e2pdf-page-number'), true)) {
                                    $replace = $this->helper->load('filter')->filter_html_tags($this->extension->render($replace, $element));
                                } else {
                                    $replace = $this->extension->render($replace, $element);
                                }
                                $element['rendered'] = true;
                            }
                            if ($value) {
                                $change = str_replace($search, $replace, $value);
                            }
                        }
                    }
                } else {
                    $change = $action['change'];
                }
            } else {
                $change = $this->extension->render($action['change']);
            }
            if ((substr($change, 0, 1) === '+' || substr($change, 0, 1) === '-') && in_array($action['property'], $number_properties, true)) {
                if (isset($element['element_id'])) {
                    $value = isset($element[$action['property']]) ? $element[$action['property']] : 0;
                } else {
                    $value = isset($element['properties'][$action['property']]) ? $element['properties'][$action['property']] : 0;
                }
                $change = $value + floatval($change);
            }
            if (in_array($action['property'], $not_properties, true) && isset($element['element_id'])) {
                $element[$action['property']] = $change;
            } else {
                $element['properties'][$action['property']] = $change;
            }
        } elseif (isset($element['action'])) {
            $element['success'] = true;
        }
        return $element;
    }

    private function apply_else_action($element, $action) {
        if ($action['action'] == 'show') {
            if (isset($action['else']) && $action['else'] == 'hide') {
                $element['hidden'] = true;
            }
        }
        return $element;
    }
}

```
