| Current Path : /proc/thread-self/cwd/wp-content/plugins/duplicator-pro/src/Views/ |
| Current File : //proc/thread-self/cwd/wp-content/plugins/duplicator-pro/src/Views/PackagesHelper.php |
<?php
namespace Duplicator\Views;
use Duplicator\Core\Views\TplMng;
class PackagesHelper
{
/**
* render Backup row
*
* @param \DUP_PRO_Package $package Backup of current row
*
* @return void
*/
public static function tablePackageRow(\DUP_PRO_Package $package)
{
$tplMng = TplMng::getInstance();
$tplMng->render(
'admin_pages/packages/package_row',
['package' => $package]
);
}
}