⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.101
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Server Software:
Apache/2.4.62 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.25
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
softaculous
/
enduser
/
themes
/
default
/
View File Name :
aefer_domains_theme.php
<?php ////////////////////////////////////////////////////////////// //=========================================================== // domains_theme.php //=========================================================== // SOFTACULOUS // Version : 1.1 // Inspired by the DESIRE to be the BEST OF ALL // ---------------------------------------------------------- // Started by: Alons // Date: 10th Jan 2009 // Time: 21:00 hrs // Site: http://www.softaculous.com/ (SOFTACULOUS) // ---------------------------------------------------------- // Please Read the Terms of use at http://www.softaculous.com // ---------------------------------------------------------- //=========================================================== // (c)Softaculous Inc. //=========================================================== ////////////////////////////////////////////////////////////// if(!defined('SOFTACULOUS')){ die('Hacking Attempt'); } function domains_theme(){ global $user, $globals, $l, $theme, $softpanel, $iscripts, $catwise, $error; global $removed; softheader(__('$0 - List Domains', array($globals['sn']))); echo '<div class="bg"><br />'; echo '<script language="javascript" type="text/javascript"><!-- // --><![CDATA[ function conf_del(){ return confirm("'.__js('Are you sure you want to delete this domain ?').'"); }; // ]]></script> <div class="col-12 px-4 text-center"><label class="page-title">'.__('List of Domains').'</label><hr /></div>'; error_handle($error, '100%'); if(!empty($removed)){ echo '<div class="alert alert-warning m-3" align="center"> <a href="#close" class="close" data-dismiss="alert" aria-label="close">×</a>'.__('The domain was removed successfully').'</div>'; } echo '<div class="row"> <div class="col-12 px-4"> <table border="0" cellpadding="5" cellspacing="0" width="100%" class="table table-hover mb-2 backup-table"> <thead class="sai_head2"> <tr> <th width="75%">'.__('Domain Name').'</th> <th>'.__('Edit').'</th> <th>'.__('Delete').'</th> </tr> </thead>'; foreach($softpanel->domains as $k => $v) { echo '<tr> <td>'.$k.'</td> <td><a href="'.$globals['ind'].'act=editdomain&did='.$v['did'].'" title="'.__('Edit').'" class="someclass"><i class="fas fa-pencil-alt px-1 sai_icons" style="color:#FF5D00;"></i></a></td> <td><a href="'.$globals['ind'].'act=domains&delid='.$v['did'].'" onclick="return conf_del();" title="'.__('Delete').'" class="someclass"><i class="fas fa-trash-alt sai_icons" style="color:red;"></i></a></td> </tr>'; } $add_domain_pg = apply_filters('add_domain_page', 'adddomain'); echo '</table><br/> <div class="text-center mt-3 mb-4"> <a class="sai-btn-link" href="'.$globals['ind'].'act='.$add_domain_pg.'" style="text-decoration:none;">'.__('Add a Domain').'</a> </div> </div> </div>'; apply_filters('post_aefer_domains_theme'); echo '</div>'; softfooter(); }