HEX
Server: Apache
System: Linux uyu7574470001-7d78c9ff74-xfpwm 4.19.91-21.al7.x86_64 #1 SMP Wed Sep 2 19:47:49 CST 2020 x86_64
User: ()
PHP: 7.4.16
Disabled: chmod,exec,system,passthru,shell_exec,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,dl,popen,pcntl_exec,socket_accept,socket_bind,socket_clear_error,socket_close,socket_connect,socket_create_listen,socket_create_pair,socket_create,socket_get_option,socket_getpeername,socket_getsockname,socket_last_error,socket_listen,socket_read,socket_recv,socket_recvfrom,socket_select,socket_send,socket_sendto,socket_set_block,socket_set_nonblock,socket_set_option,socket_shutdown,socket_strerror,socket_write,stream_socket_client,stream_socket_server,pfsockopen,disk_total_space,disk_free_space,chown,diskfreespace,getrusage,get_current_user,getmyuid,getmypid,dl,leak,listen,chgrp,link,symlink,dlopen,proc_nice,proc_get_stats,proc_terminate,shell_exec,sh2_exec,posix_getpwuid,posix_getgrgid,posix_kill,ini_restore,mkfifo,dbmopen,dbase_open,filepro,filepro_rowcount,posix_mkfifo,putenv,sleep,fsockopen
Upload Files
File: /usr/home/uyu7574470001/htdocs/wp-content/plugins/duplicator/template/mocks/staging/staging.php
<?php

use Duplicator\Core\Views\TplMng;
use Duplicator\Utils\LinkManager;

defined("ABSPATH") || exit;

/**
 * Variables
 *
 * @var \Duplicator\Core\Views\TplMng  $tplMng
 * @var array<string, mixed> $tplData
 */
?>
<div class="wrap">
    <h1><?php esc_html_e('Staging', 'duplicator') ?></h1>
    <div class="mock-blur">
        <!-- ====================
        TOOL-BAR -->
        <table class="dpro-edit-toolbar">
            <tbody>
            <tr>
                <td>
                    <select id="bulk_action">
                        <option value="-1" selected="selected">Bulk Actions</option>
                        <option value="delete">Delete</option>
                    </select>
                    <input type="button" class="button action" value="Apply">
                </td>
                <td>
                    <div class="btnnav">
                        <a href="#" class="button">Create Staging Site</a>
                    </div>
                </td>
            </tr>
            </tbody>
        </table>

        <form id="dup-staging-form" action="#" method="post">
            <!-- ====================
            LIST ALL STAGING SITES -->
            <table class="widefat staging-tbl">
                <thead>
                <tr>
                    <th style="width:10px;"><input type="checkbox" id="dup-chk-all" title="Select all staging sites"></th>
                    <th style="width:255px;">Name</th>
                    <th>URL</th>
                    <th>Status</th>
                    <th>Created</th>
                </tr>
                </thead>
                <tbody>
                    <tr class="staging-row">
                        <td>
                            <input type="checkbox" class="item-chk">
                        </td>
                        <td>
                            <a href="#" class="name">Dev Staging</a>
                        </td>
                        <td>https://staging1.example.com</td>
                        <td><b><span class="green">Active</span></b></td>
                        <td>January 10, 2023 12:00</td>
                    </tr>
                    <tr class="staging-row">
                        <td>
                            <input type="checkbox" class="item-chk">
                        </td>
                        <td>
                            <a href="#" class="name">Theme Redesign</a>
                        </td>
                        <td>https://staging2.example.com</td>
                        <td><b><span class="green">Active</span></b></td>
                        <td>February 5, 2023 09:30</td>
                    </tr>
                    <tr class="staging-row">
                        <td>
                            <input type="checkbox" class="item-chk">
                        </td>
                        <td>
                            <a href="#" class="name">Plugin Update Test</a>
                        </td>
                        <td>https://staging3.example.com</td>
                        <td><b>Syncing</b></td>
                        <td>March 1, 2023 14:15</td>
                    </tr>
                    <tr class="staging-row">
                        <td>
                            <input type="checkbox" class="item-chk">
                        </td>
                        <td>
                            <a href="#" class="name">WooCommerce Migration</a>
                        </td>
                        <td>https://staging4.example.com</td>
                        <td><b><span class="green">Active</span></b></td>
                        <td>March 8, 2023 11:00</td>
                    </tr>
                    <tr class="staging-row">
                        <td>
                            <input type="checkbox" class="item-chk">
                        </td>
                        <td>
                            <a href="#" class="name">Security Patch Test</a>
                        </td>
                        <td>https://staging5.example.com</td>
                        <td><b><span class="green">Active</span></b></td>
                        <td>March 12, 2023 08:45</td>
                    </tr>
                </tbody>
                <tfoot>
                <tr>
                    <th colspan="5" style="text-align:right; white-space: nowrap; font-size:12px">
                        Total: 5 | Active: 4 | Syncing: 1</th>
                </tr>
                </tfoot>
            </table>
        </form>
    </div>
</div>
<?php
TplMng::getInstance()->render(
    'parts/Education/static-popup',
    array(
        'title'        => __('Create staging sites to safely test changes!', 'duplicator'),
        'warning-text' => __('Staging sites are not available in Duplicator Lite!', 'duplicator'),
        'content-tpl'  => 'mocks/staging/content-popup',
        'upsell-url'   => LinkManager::getCampaignUrl('blurred-mocks', 'Staging')
    )
);
?>