diff --git a/install/froxlor.sql b/install/froxlor.sql index 442d5e68..15a5da7f 100644 --- a/install/froxlor.sql +++ b/install/froxlor.sql @@ -8,7 +8,7 @@ CREATE TABLE `ftp_groups` ( PRIMARY KEY (`id`), UNIQUE KEY `groupname` (`groupname`), KEY `customerid` (`customerid`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -32,7 +32,7 @@ CREATE TABLE `ftp_users` ( PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`), KEY `customerid` (`customerid`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -55,7 +55,7 @@ CREATE TABLE `mail_users` ( `imap` tinyint(1) NOT NULL default '1', PRIMARY KEY (`id`), UNIQUE KEY `email` (`email`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -71,7 +71,7 @@ CREATE TABLE `mail_virtual` ( `iscatchall` tinyint(1) unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `email` (`email`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -126,7 +126,7 @@ CREATE TABLE `panel_admins` ( `theme` varchar(255) NOT NULL default 'Froxlor', PRIMARY KEY (`adminid`), UNIQUE KEY `loginname` (`loginname`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -191,7 +191,7 @@ CREATE TABLE `panel_customers` ( `backup_enabled` TINYINT( 1 ) NOT NULL DEFAULT '0', PRIMARY KEY (`customerid`), UNIQUE KEY `loginname` (`loginname`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -205,7 +205,7 @@ CREATE TABLE `panel_databases` ( `apsdb` tinyint(1) NOT NULL default '0', PRIMARY KEY (`id`), KEY `customerid` (`customerid`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -251,7 +251,7 @@ CREATE TABLE `panel_domains` ( KEY `customerid` (`customerid`), KEY `parentdomain` (`parentdomainid`), KEY `domain` (`domain`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -273,7 +273,7 @@ CREATE TABLE `panel_ipsandports` ( `ssl_cert_chainfile` varchar(255) NOT NULL, `docroot` varchar(255) NOT NULL default '', PRIMARY KEY (`id`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -289,7 +289,7 @@ CREATE TABLE `panel_htaccess` ( `error401path` varchar(255) NOT NULL default '', `options_cgi` tinyint(1) NOT NULL default '0', PRIMARY KEY (`id`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -303,7 +303,7 @@ CREATE TABLE `panel_htpasswds` ( `authname` varchar(255) NOT NULL default 'Restricted Area', PRIMARY KEY (`id`), KEY `customerid` (`customerid`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -332,7 +332,7 @@ CREATE TABLE `panel_settings` ( `varname` varchar(255) NOT NULL default '', `value` text NOT NULL, PRIMARY KEY (`settingid`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -541,7 +541,7 @@ CREATE TABLE `panel_tasks` ( `type` int(11) NOT NULL default '0', `data` text NOT NULL, PRIMARY KEY (`id`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -555,7 +555,7 @@ CREATE TABLE `panel_templates` ( `value` longtext NOT NULL, PRIMARY KEY (id), KEY adminid (adminid) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -573,7 +573,7 @@ CREATE TABLE `panel_traffic` ( `mail` bigint(30) unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `customerid` (`customerid`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -591,7 +591,7 @@ CREATE TABLE `panel_traffic_admins` ( `mail` bigint(30) unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `adminid` (`adminid`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -608,7 +608,7 @@ CREATE TABLE `panel_diskspace` ( `mysql` bigint(30) unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `customerid` (`customerid`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -625,7 +625,7 @@ CREATE TABLE `panel_diskspace_admins` ( `mysql` bigint(30) unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `adminid` (`adminid`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -636,7 +636,7 @@ CREATE TABLE `panel_languages` ( `iso` char(3) NOT NULL DEFAULT 'foo', `file` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -680,7 +680,7 @@ CREATE TABLE `panel_tickets` ( `archived` enum('0','1') NOT NULL default '0', PRIMARY KEY (`id`), KEY `customerid` (`customerid`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -691,7 +691,7 @@ CREATE TABLE `panel_ticket_categories` ( `adminid` int(11) NOT NULL, `logicalorder` int(3) NOT NULL default '1', PRIMARY KEY (`id`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -704,7 +704,7 @@ CREATE TABLE IF NOT EXISTS `panel_syslog` ( `user` varchar(50) NOT NULL, `text` text NOT NULL, PRIMARY KEY (`logid`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -720,7 +720,7 @@ CREATE TABLE `mail_autoresponder` ( PRIMARY KEY (`email`), KEY `customerid` (`customerid`), FULLTEXT KEY `message` (`message`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -734,7 +734,7 @@ CREATE TABLE `panel_phpconfigs` ( `mod_fcgid_maxrequests` int(4) NOT NULL DEFAULT '-1', `phpsettings` text NOT NULL, PRIMARY KEY (`id`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -750,7 +750,7 @@ CREATE TABLE IF NOT EXISTS `aps_instances` ( `PackageID` int(4) NOT NULL, `Status` int(4) NOT NULL, PRIMARY KEY (`ID`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -763,7 +763,7 @@ CREATE TABLE IF NOT EXISTS `aps_packages` ( `Release` int(4) NOT NULL, `Status` int(1) NOT NULL default '1', PRIMARY KEY (`ID`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -774,7 +774,7 @@ CREATE TABLE IF NOT EXISTS `aps_settings` ( `Name` varchar(250) NOT NULL, `Value` varchar(250) NOT NULL, PRIMARY KEY (`ID`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -784,7 +784,7 @@ CREATE TABLE IF NOT EXISTS `aps_tasks` ( `InstanceID` int(4) NOT NULL, `Task` int(4) NOT NULL, PRIMARY KEY (`ID`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -796,7 +796,7 @@ CREATE TABLE IF NOT EXISTS `aps_temp_settings` ( `Name` varchar(250) NOT NULL, `Value` varchar(250) NOT NULL, PRIMARY KEY (`ID`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -810,7 +810,7 @@ CREATE TABLE IF NOT EXISTS `cronjobs_run` ( `isactive` tinyint(1) DEFAULT '1', `desc_lng_key` varchar(100) NOT NULL DEFAULT 'cron_unknown_desc', PRIMARY KEY (`id`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -839,7 +839,7 @@ CREATE TABLE IF NOT EXISTS `ftp_quotalimits` ( `files_in_avail` int(10) unsigned NOT NULL, `files_out_avail` int(10) unsigned NOT NULL, `files_xfer_avail` int(10) unsigned NOT NULL -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -858,7 +858,7 @@ CREATE TABLE IF NOT EXISTS `ftp_quotatallies` ( `files_in_used` int(10) unsigned NOT NULL, `files_out_used` int(10) unsigned NOT NULL, `files_xfer_used` int(10) unsigned NOT NULL -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -869,7 +869,7 @@ CREATE TABLE IF NOT EXISTS `redirect_codes` ( `desc` varchar(200) NOT NULL, `enabled` tinyint(1) DEFAULT '1', PRIMARY KEY (`id`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -887,7 +887,7 @@ CREATE TABLE IF NOT EXISTS `domain_redirect_codes` ( `rid` int(5) NOT NULL, `did` int(11) unsigned NOT NULL, UNIQUE KEY `rc` (`rid`, `did`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -897,7 +897,7 @@ CREATE TABLE IF NOT EXISTS `ipsandports_docrootsettings` ( `fid` int(11) NOT NULL, `docrootsettings` text NOT NULL, PRIMARY KEY (`id`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; @@ -907,5 +907,5 @@ CREATE TABLE IF NOT EXISTS `domain_docrootsettings` ( `fid` int(11) NOT NULL, `docrootsettings` text NOT NULL, PRIMARY KEY (`id`) -) ENGINE=MyISAM SET utf8 COLLATE utf8_general_ci; +) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_general_ci; diff --git a/install/updates/froxlor/0.9/update_0.9.inc.php b/install/updates/froxlor/0.9/update_0.9.inc.php index f759c382..83d33b99 100644 --- a/install/updates/froxlor/0.9/update_0.9.inc.php +++ b/install/updates/froxlor/0.9/update_0.9.inc.php @@ -1929,9 +1929,31 @@ if(isFroxlorVersion('0.9.28-svn3')) showUpdateStep("Updating from 0.9.28-svn3 to 0.9.28-svn4", true); lastStepStatus(0); - $update_default_theme = isset($_POST['update_default_theme']) ? $_POST['update_default_theme'] : 'Froxlor'; - showUpdateStep('Setting default panel theme \'' . $update_default_theme . '\'', true); - $db->query("UPDATE `" . TABLE_PANEL_SETTINGS . "` SET `value` = '".$db->escape($update_default_theme)."' WHERE varname = 'default_theme';"); + if (isset($_POST['classic_theme_replacement']) && $_POST['classic_theme_replacement'] != '') + { + $classic_theme_replacement = $_POST['classic_theme_replacement']; + } + else + { + $classic_theme_replacement = 'Froxlor'; + } + showUpdateStep('Setting replacement for the discontinued and removed Classic theme (if active)', true); + + // Updating default theme setting + if ($settings['panel']['default_theme'] == 'Classic') + { + $db->query("UPDATE `" . TABLE_PANEL_SETTINGS . "` SET `value` = '".$db->escape($classic_theme_replacement)."' WHERE varname = 'default_theme';"); + } + + // Updating admin's theme setting + $db->query('UPDATE `' . TABLE_PANEL_ADMINS . '` SET `theme` = \'' . $db->escape($classic_theme_replacement) . '\' WHERE `theme` = \'Classic\''); + + // Updating customer's theme setting + $db->query('UPDATE `' . TABLE_PANEL_CUSTOMERS . '` SET `theme` = \'' . $db->escape($classic_theme_replacement) . '\' WHERE `theme` = \'Classic\''); + + // Updating theme setting of active sessions + $db->query('UPDATE `' . TABLE_PANEL_SESSIONS . '` SET `theme` = \'' . $db->escape($classic_theme_replacement) . '\' WHERE `theme` = \'Classic\''); + lastStepStatus(0); showUpdateStep('Altering Froxlor database and tables to use UTF-8. This may take a while..', true); diff --git a/install/updates/preconfig/0.9/preconfig_0.9.inc.php b/install/updates/preconfig/0.9/preconfig_0.9.inc.php index 993c4a9b..e6b90d38 100644 --- a/install/updates/preconfig/0.9/preconfig_0.9.inc.php +++ b/install/updates/preconfig/0.9/preconfig_0.9.inc.php @@ -440,8 +440,8 @@ function parseAndOutputPreconfig(&$has_preconfig, &$return, $current_version) $description .= 'Even though this is already tested, we strongly recommend to '; $description .= 'test this update in a testing environment using your existing data.

'; - $question = 'Select your default panel theme: '; - $question.= ''; $themes = getThemes(); foreach($themes as $cur_theme) { diff --git a/templates/Classic/admin/admins/admins.tpl b/templates/Classic/admin/admins/admins.tpl deleted file mode 100644 index fd751480..00000000 --- a/templates/Classic/admin/admins/admins.tpl +++ /dev/null @@ -1,45 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - $admins - - - - - - - - -
 {$lng['admin']['admins']} ({$admincount}){$searchcode}
{$lng['login']['username']}
{$arrowcode['loginname']}
{$lng['customer']['name']}
{$arrowcode['name']}
{$lng['admin']['customers']}
{$lng['admin']['domains']}
{$lng['customer']['diskspace']}
{$lng['customer']['traffic']}
{$lng['customer']['mysqls']}
{$lng['customer']['ftps']}
{$lng['customer']['tickets']}{$lng['customer']['autoresponder']}{$lng['customer']['tickets']}
{$lng['customer']['autoresponder']}
{$lng['customer']['emails']}
{$lng['customer']['subdomains']}
{$lng['customer']['accounts']}
{$lng['customer']['forwarders']}
{$lng['admin']['deactivated']}
{$arrowcode['deactivated']}
{$pagingcode}
{$lng['admin']['admin_add']}
-
-
-
-$footer diff --git a/templates/Classic/admin/admins/admins_add.tpl b/templates/Classic/admin/admins/admins_add.tpl deleted file mode 100644 index 941cc07b..00000000 --- a/templates/Classic/admin/admins/admins_add.tpl +++ /dev/null @@ -1,25 +0,0 @@ -$header -
- - - - - - - - - {$admin_add_form} -
{$title} {$title}
-
-
- - - - - - - -
*: {$lng['admin']['valuemandatory']}
**: {$lng['admin']['valuemandatorycompany']}
-
-
-$footer diff --git a/templates/Classic/admin/admins/admins_admin.tpl b/templates/Classic/admin/admins/admins_admin.tpl deleted file mode 100644 index cd86acd8..00000000 --- a/templates/Classic/admin/admins/admins_admin.tpl +++ /dev/null @@ -1,26 +0,0 @@ - - {$row['loginname']}{$row['loginname']} - {$row['name']} - {$row['customers_used']}/{$row['customers']}
{$row['domains_used']}/{$row['domains']} - {$row['diskspace_used']}/{$row['diskspace']} (MB)
{$row['traffic_used']}/{$row['traffic']} (GB) - {$row['mysqls_used']}/{$row['mysqls']}
{$row['ftps_used']}/{$row['ftps']} - - - {$row['tickets_used']}/{$row['tickets']} - - - {$row['email_autoresponder_used']}/{$row['email_autoresponder']} - - - - {$row['tickets_used']}/{$row['tickets']} -
- {$row['email_autoresponder_used']}/{$row['email_autoresponder']} - -
-
- {$row['emails_used']}/{$row['emails']}
{$row['subdomains_used']}/{$row['subdomains']} - {$row['email_accounts_used']}/{$row['email_accounts']}
{$row['email_forwarders_used']}/{$row['email_forwarders']} - {$lng['panel']['yes']}{$lng['panel']['no']} - {$lng['panel']['edit']}
{$lng['panel']['delete']} - diff --git a/templates/Classic/admin/admins/admins_edit.tpl b/templates/Classic/admin/admins/admins_edit.tpl deleted file mode 100644 index 1d5f7492..00000000 --- a/templates/Classic/admin/admins/admins_edit.tpl +++ /dev/null @@ -1,26 +0,0 @@ -$header -
- - - - - - - - - - {$admin_edit_form} -
{$title} {$title}
-
-
- - - - - - - -
*: {$lng['admin']['valuemandatory']}
**: {$lng['admin']['valuemandatorycompany']}
-
-
-$footer diff --git a/templates/Classic/admin/aps/askyesno.tpl b/templates/Classic/admin/aps/askyesno.tpl deleted file mode 100644 index 7a0e231e..00000000 --- a/templates/Classic/admin/aps/askyesno.tpl +++ /dev/null @@ -1,23 +0,0 @@ - - - - - -
- $Message -
- - - - - $Ids -
-
-
- - - -
-
-
-
diff --git a/templates/Classic/admin/aps/footer.tpl b/templates/Classic/admin/aps/footer.tpl deleted file mode 100644 index 35ee6c15..00000000 --- a/templates/Classic/admin/aps/footer.tpl +++ /dev/null @@ -1 +0,0 @@ -$footer diff --git a/templates/Classic/admin/aps/header.tpl b/templates/Classic/admin/aps/header.tpl deleted file mode 100644 index 6af88b30..00000000 --- a/templates/Classic/admin/aps/header.tpl +++ /dev/null @@ -1 +0,0 @@ -$header diff --git a/templates/Classic/admin/aps/infobox.tpl b/templates/Classic/admin/aps/infobox.tpl deleted file mode 100644 index e8db19bf..00000000 --- a/templates/Classic/admin/aps/infobox.tpl +++ /dev/null @@ -1,7 +0,0 @@ - - - - - -
$Message
-
diff --git a/templates/Classic/admin/aps/manage_instances.tpl b/templates/Classic/admin/aps/manage_instances.tpl deleted file mode 100644 index cf408e69..00000000 --- a/templates/Classic/admin/aps/manage_instances.tpl +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - -
 {$lng['aps']['specialoptions']}
{$lng['aps']['statistics']}$Statistics
-
-
- - - - - - - - - - - - - - {$Instances} - - -
 {$lng['aps']['manageinstances']}
{$lng['aps']['packagenameandstatus']}{$lng['aps']['stopinstall']}{$lng['aps']['uninstall']}
 
-
-
-
diff --git a/templates/Classic/admin/aps/manage_instances_detail.tpl b/templates/Classic/admin/aps/manage_instances_detail.tpl deleted file mode 100644 index e085df7b..00000000 --- a/templates/Classic/admin/aps/manage_instances_detail.tpl +++ /dev/null @@ -1,5 +0,0 @@ - - {$Row['name']}, {$Row['firstname']} | {$Row['company']} ({$Row['loginname']}): {$database}; {$main_domain} - $Stop - $Remove - diff --git a/templates/Classic/admin/aps/manage_instances_package.tpl b/templates/Classic/admin/aps/manage_instances_package.tpl deleted file mode 100644 index f2e4e06e..00000000 --- a/templates/Classic/admin/aps/manage_instances_package.tpl +++ /dev/null @@ -1,3 +0,0 @@ - - {$Row['Name']} {$Row['Version']} (Release {$Row['Release']}) - \ No newline at end of file diff --git a/templates/Classic/admin/aps/manage_instances_status.tpl b/templates/Classic/admin/aps/manage_instances_status.tpl deleted file mode 100644 index 9e0e3822..00000000 --- a/templates/Classic/admin/aps/manage_instances_status.tpl +++ /dev/null @@ -1,3 +0,0 @@ - - {$Caption} - diff --git a/templates/Classic/admin/aps/manage_packages.tpl b/templates/Classic/admin/aps/manage_packages.tpl deleted file mode 100644 index fe2f28f0..00000000 --- a/templates/Classic/admin/aps/manage_packages.tpl +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - - -
 {$lng['aps']['specialoptions']}
{$lng['admin']['phpsettings']['actions']} -
- - - - - -
-
- - - - - -
-
-
-
- - - - - -
-
- - - - - -
-
{$lng['aps']['statistics']}$Statistics
-
-
- - - - - - - - - - - - - - - - - $Packages - - - - - - - - - -
 {$lng['aps']['managepackages']}
{$lng['aps']['packagenameandversion']}{$lng['ticket']['status']}{$lng['aps']['installations']}{$lng['aps']['lock']}{$lng['aps']['unlock']}{$lng['aps']['remove']}
{$lng['aps']['allpackages']}
 
-
-
-
diff --git a/templates/Classic/admin/aps/manage_packages_detail.tpl b/templates/Classic/admin/aps/manage_packages_detail.tpl deleted file mode 100644 index ccc4f9e3..00000000 --- a/templates/Classic/admin/aps/manage_packages_detail.tpl +++ /dev/null @@ -1,8 +0,0 @@ - - {$Row2['Version']} (Release {$Row2['Release']}) - {$lng['aps']['package_locked']}{$lng['aps']['package_enabled']} - {$Installations} - $Lock - $Unlock - $Remove - diff --git a/templates/Classic/admin/aps/manage_packages_download.tpl b/templates/Classic/admin/aps/manage_packages_download.tpl deleted file mode 100644 index 131e6266..00000000 --- a/templates/Classic/admin/aps/manage_packages_download.tpl +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - -
 {$lng['aps']['specialoptions']}
{$lng['admin']['phpsettings']['actions']} -
- - - - - -
-
-
-
diff --git a/templates/Classic/admin/aps/manage_packages_row.tpl b/templates/Classic/admin/aps/manage_packages_row.tpl deleted file mode 100644 index f84e5fb7..00000000 --- a/templates/Classic/admin/aps/manage_packages_row.tpl +++ /dev/null @@ -1,3 +0,0 @@ - - {$Row['Name']} - diff --git a/templates/Classic/admin/aps/upload.tpl b/templates/Classic/admin/aps/upload.tpl deleted file mode 100644 index f6133442..00000000 --- a/templates/Classic/admin/aps/upload.tpl +++ /dev/null @@ -1,19 +0,0 @@ -
- - - - - - - - - - - - - - - - -
 {$lng['aps']['upload']}
{$lng['aps']['upload_description']} http://www.apsstandard.org/

$Output
-
diff --git a/templates/Classic/admin/configfiles/choose.tpl b/templates/Classic/admin/configfiles/choose.tpl deleted file mode 100644 index 56164e45..00000000 --- a/templates/Classic/admin/configfiles/choose.tpl +++ /dev/null @@ -1,10 +0,0 @@ -$header - - - - - $distributions -
 {$lng['admin']['configfiles']['serverconfiguration']} [getLink(array('section' => 'configfiles', 'page' => 'configfiles'))}">{$lng['admin']['configfiles']['wizard']}]
-
-
-$footer diff --git a/templates/Classic/admin/configfiles/choose_daemon.tpl b/templates/Classic/admin/configfiles/choose_daemon.tpl deleted file mode 100644 index f96fde68..00000000 --- a/templates/Classic/admin/configfiles/choose_daemon.tpl +++ /dev/null @@ -1,2 +0,0 @@ -   » {$daemon_details['label']} -
\ No newline at end of file diff --git a/templates/Classic/admin/configfiles/choose_distribution.tpl b/templates/Classic/admin/configfiles/choose_distribution.tpl deleted file mode 100644 index 6ccf50e8..00000000 --- a/templates/Classic/admin/configfiles/choose_distribution.tpl +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - -
» {$distribution_details['label']}
$services
- - \ No newline at end of file diff --git a/templates/Classic/admin/configfiles/choose_service.tpl b/templates/Classic/admin/configfiles/choose_service.tpl deleted file mode 100644 index 93d0d7bf..00000000 --- a/templates/Classic/admin/configfiles/choose_service.tpl +++ /dev/null @@ -1,3 +0,0 @@ - » {$service_details['label']} -
-$daemons \ No newline at end of file diff --git a/templates/Classic/admin/configfiles/configfiles.tpl b/templates/Classic/admin/configfiles/configfiles.tpl deleted file mode 100644 index 870585fa..00000000 --- a/templates/Classic/admin/configfiles/configfiles.tpl +++ /dev/null @@ -1,15 +0,0 @@ -$header - - - - - {$configpage} - - - - - -
 {$configfiles[$distribution]['label']} » {$configfiles[$distribution]['services'][$service]['label']} » {$configfiles[$distribution]['services'][$service]['daemons'][$daemon]['label']} [{$lng['panel']['back']}]
{$lng['admin']['configfiles']['restart']}

-
-
-$footer diff --git a/templates/Classic/admin/configfiles/configfiles_commands.tpl b/templates/Classic/admin/configfiles/configfiles_commands.tpl deleted file mode 100644 index 3ef27e70..00000000 --- a/templates/Classic/admin/configfiles/configfiles_commands.tpl +++ /dev/null @@ -1,3 +0,0 @@ - - {$lng['admin']['configfiles']['commands']}

- diff --git a/templates/Classic/admin/configfiles/configfiles_file.tpl b/templates/Classic/admin/configfiles/configfiles_file.tpl deleted file mode 100644 index cd5260c8..00000000 --- a/templates/Classic/admin/configfiles/configfiles_file.tpl +++ /dev/null @@ -1,4 +0,0 @@ -

- {$realname}:
- -

diff --git a/templates/Classic/admin/configfiles/configfiles_files.tpl b/templates/Classic/admin/configfiles/configfiles_files.tpl deleted file mode 100644 index 7a967848..00000000 --- a/templates/Classic/admin/configfiles/configfiles_files.tpl +++ /dev/null @@ -1,3 +0,0 @@ - - {$lng['admin']['configfiles']['files']}
{$files} - \ No newline at end of file diff --git a/templates/Classic/admin/configfiles/wizard.tpl b/templates/Classic/admin/configfiles/wizard.tpl deleted file mode 100644 index de33f0e3..00000000 --- a/templates/Classic/admin/configfiles/wizard.tpl +++ /dev/null @@ -1,28 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - - - - -
 {$lng['admin']['configfiles']['serverconfiguration']} [{$lng['admin']['configfiles']['overview']}]
{$lng['admin']['configfiles']['distribution']}:{$configfiles[$distribution]['label']}
{$lng['admin']['configfiles']['service']}:{$configfiles[$distribution]['services'][$service]['label']}
{$lng['admin']['configfiles']['daemon']}:
-
-
-
-$footer diff --git a/templates/Classic/admin/cronjobs/cronjob_edit.tpl b/templates/Classic/admin/cronjobs/cronjob_edit.tpl deleted file mode 100644 index 09d22d92..00000000 --- a/templates/Classic/admin/cronjobs/cronjob_edit.tpl +++ /dev/null @@ -1,17 +0,0 @@ -$header -
- - - - - - - - - - {$cronjobs_edit_form} -
{$title} {$title}
-
-
-
-$footer diff --git a/templates/Classic/admin/cronjobs/cronjobs.tpl b/templates/Classic/admin/cronjobs/cronjobs.tpl deleted file mode 100644 index d3c1dc34..00000000 --- a/templates/Classic/admin/cronjobs/cronjobs.tpl +++ /dev/null @@ -1,35 +0,0 @@ -$header -
- - - - - - - - - -
 {$lng['admin']['warning']}
- - {$lng['cron']['changewarning']} - -
-
-
- - - - - - - - - - - - $crons -
 {$lng['admin']['cron']['cronsettings']}
{$lng['cron']['description']}{$lng['cron']['lastrun']}{$lng['cron']['interval']}{$lng['cron']['isactive']}{$lng['panel']['options']}
-
-
-
-$footer diff --git a/templates/Classic/admin/cronjobs/cronjobs_cronjob.tpl b/templates/Classic/admin/cronjobs/cronjobs_cronjob.tpl deleted file mode 100644 index 5583d739..00000000 --- a/templates/Classic/admin/cronjobs/cronjobs_cronjob.tpl +++ /dev/null @@ -1,7 +0,0 @@ - - {$description} - {$row['lastrun']} - {$row['interval']} - {$row['isactive']} - {$lng['panel']['edit']} - diff --git a/templates/Classic/admin/customers/customers.tpl b/templates/Classic/admin/customers/customers.tpl deleted file mode 100644 index 18a59807..00000000 --- a/templates/Classic/admin/customers/customers.tpl +++ /dev/null @@ -1,53 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - $customers - - - - - - - - - - -
 {$lng['admin']['customers']} ({$customercount}){$searchcode}
{$lng['admin']['customer_add']}
{$lng['login']['username']}
{$arrowcode['c.loginname']}
{$lng['admin']['admin']}
{$arrowcode['a.loginname']}
{$lng['customer']['name']}  {$arrowcode['c.name']}
{$lng['customer']['firstname']}  {$arrowcode['c.firstname']}
{$lng['customer']['domains']}{$lng['customer']['tickets']}{$lng['customer']['autoresponder']}{$lng['customer']['tickets']}
{$lng['customer']['autoresponder']}
{$lng['customer']['diskspace']}
{$lng['customer']['traffic']}
{$lng['customer']['mysqls']}
{$lng['customer']['ftps']}
{$lng['customer']['emails']}
{$lng['customer']['subdomains']}
{$lng['customer']['accounts']}
{$lng['customer']['forwarders']}
{$lng['admin']['deactivated']}
{$lng['admin']['lastlogin_succ']}
{$pagingcode}
{$lng['admin']['customer_add']}
-
-
-
-$footer diff --git a/templates/Classic/admin/customers/customers_add.tpl b/templates/Classic/admin/customers/customers_add.tpl deleted file mode 100644 index 396f2f07..00000000 --- a/templates/Classic/admin/customers/customers_add.tpl +++ /dev/null @@ -1,25 +0,0 @@ -$header -
- - - - - - - - - {$customer_add_form} -
{$title} {$title}
-
-
- - - - - - - -
*: {$lng['admin']['valuemandatory']}
**: {$lng['admin']['valuemandatorycompany']}
-
-
-$footer diff --git a/templates/Classic/admin/customers/customers_customer.tpl b/templates/Classic/admin/customers/customers_customer.tpl deleted file mode 100644 index d2077f49..00000000 --- a/templates/Classic/admin/customers/customers_customer.tpl +++ /dev/null @@ -1,31 +0,0 @@ - - {$row['loginname']} - {$row['adminname']} - {$row['name']}
{$row['firstname']}
{$row['company']} - {$row['domains']}{$row['domains']} - - - style="color:red" style="color:green">{$row['tickets_used']}/{$row['tickets']} - - - style="color:red" style="color:green">{$row['email_autoresponder_used']}/{$row['email_autoresponder']} - - - - style="color:red" style="color:green">{$row['tickets_used']}/{$row['tickets']} -
- style="color:red" style="color:green">{$row['email_autoresponder_used']}/{$row['email_autoresponder']} - - - - - style="color:red" style="color:green">{$row['diskspace_used']}/{$row['diskspace']} (MB) -
- style="color:red" style="color:green">{$row['traffic_used']}/{$row['traffic']} (GB) - - {$row['mysqls_used']}/{$row['mysqls']}
{$row['ftps_used']}/{$row['ftps']} - {$row['emails_used']}/{$row['emails']}
{$row['subdomains_used']}/{$row['subdomains']} - {$row['email_accounts_used']}/{$row['email_accounts']}
{$row['email_forwarders_used']}/{$row['email_forwarders']} - {$lng['panel']['yes']}{$lng['panel']['no']}
{$last_login} - {$lng['panel']['edit']}
{$lng['panel']['delete']} - diff --git a/templates/Classic/admin/customers/customers_edit.tpl b/templates/Classic/admin/customers/customers_edit.tpl deleted file mode 100644 index 1deb8636..00000000 --- a/templates/Classic/admin/customers/customers_edit.tpl +++ /dev/null @@ -1,26 +0,0 @@ -$header -
- - - - - - - - - - {$customer_edit_form} -
 {$title}
-
-
- - - - - - - -
*: {$lng['admin']['valuemandatory']}
**: {$lng['admin']['valuemandatorycompany']}
-
-
-$footer diff --git a/templates/Classic/admin/domains/domains.tpl b/templates/Classic/admin/domains/domains.tpl deleted file mode 100644 index e9ac9c11..00000000 --- a/templates/Classic/admin/domains/domains.tpl +++ /dev/null @@ -1,41 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - - $domains - - - - - - - - - - - - - - - -
 {$lng['admin']['domains']} ({$domainscount}){$searchcode}
{$lng['admin']['domain_add']}
{$lng['domains']['domainname']}  {$arrowcode['d.domain']}{$lng['admin']['ipsandports']['ip']}  {$arrowcode['ip.ip']} : {$lng['admin']['ipsandports']['port']}  {$arrowcode['ip.port']}{$lng['admin']['customer']}  {$arrowcode['c.loginname']}
{$pagingcode}
{$lng['admin']['domain_add']}
{$lng['admin']['domain_nocustomeraddingavailable']}
-
-
-
-$footer diff --git a/templates/Classic/admin/domains/domains_add.tpl b/templates/Classic/admin/domains/domains_add.tpl deleted file mode 100644 index 293dc204..00000000 --- a/templates/Classic/admin/domains/domains_add.tpl +++ /dev/null @@ -1,16 +0,0 @@ -$header -
- - - - - - - - - {$domain_add_form} -
{$title} {$title}
-
-
-
-$footer diff --git a/templates/Classic/admin/domains/domains_domain.tpl b/templates/Classic/admin/domains/domains_domain.tpl deleted file mode 100644 index 8080f9c4..00000000 --- a/templates/Classic/admin/domains/domains_domain.tpl +++ /dev/null @@ -1,16 +0,0 @@ - - {$row['domain']} ({$lng['admin']['stdsubdomain']}) - {$row['ipandport']} - {$row['customername']} ({$row['loginname']}) - {$lng['panel']['edit']} - - - - {$lng['panel']['delete']} - - - - {$lng['domains']['hasaliasdomains']} - - - diff --git a/templates/Classic/admin/domains/domains_edit.tpl b/templates/Classic/admin/domains/domains_edit.tpl deleted file mode 100644 index 025278bc..00000000 --- a/templates/Classic/admin/domains/domains_edit.tpl +++ /dev/null @@ -1,17 +0,0 @@ -$header -
- - - - - - - - - - {$domain_edit_form} -
 {$title}
-
-
-
-$footer diff --git a/templates/Classic/admin/froxlorclients/froxlorclient_settings.tpl b/templates/Classic/admin/froxlorclients/froxlorclient_settings.tpl deleted file mode 100644 index e639c4e9..00000000 --- a/templates/Classic/admin/froxlorclients/froxlorclient_settings.tpl +++ /dev/null @@ -1,12 +0,0 @@ - - - - - $fields - - - -
 {$lng['admin']['froxlorclient_settings']} "{$client->Get('name')}" - [{$lng['admin']['configfiles']['compactoverview']}]
- -
diff --git a/templates/Classic/admin/froxlorclients/froxlorclient_settingsend.tpl b/templates/Classic/admin/froxlorclients/froxlorclient_settingsend.tpl deleted file mode 100644 index 27b0931d..00000000 --- a/templates/Classic/admin/froxlorclients/froxlorclient_settingsend.tpl +++ /dev/null @@ -1,8 +0,0 @@ - - - - - -
-
-$footer diff --git a/templates/Classic/admin/froxlorclients/froxlorclient_settingsoverview.tpl b/templates/Classic/admin/froxlorclients/froxlorclient_settingsoverview.tpl deleted file mode 100644 index c5c579b4..00000000 --- a/templates/Classic/admin/froxlorclients/froxlorclient_settingsoverview.tpl +++ /dev/null @@ -1,14 +0,0 @@ - - - - - $fields - - - -
-  {$lng['admin']['configfiles']['serverconfiguration']} "{$client->Get('name')}" - [{$lng['admin']['configfiles']['overview']}] -
-   -
diff --git a/templates/Classic/admin/froxlorclients/froxlorclient_settingsoverviewgroup.tpl b/templates/Classic/admin/froxlorclients/froxlorclient_settingsoverviewgroup.tpl deleted file mode 100644 index 0c0434a9..00000000 --- a/templates/Classic/admin/froxlorclients/froxlorclient_settingsoverviewgroup.tpl +++ /dev/null @@ -1,12 +0,0 @@ - - -  {$title} - - {$option} - - - {$lng['admin']['configfiles']['serverconfiguration']} - - - - diff --git a/templates/Classic/admin/froxlorclients/froxlorclients.tpl b/templates/Classic/admin/froxlorclients/froxlorclients.tpl deleted file mode 100644 index 0747f5b3..00000000 --- a/templates/Classic/admin/froxlorclients/froxlorclients.tpl +++ /dev/null @@ -1,29 +0,0 @@ -$header -
- - - - - - - - - - - - - - $froxlorclients - - - - - - - - -
 {$lng['menue']['multiserver']['clients']}{$searchcode}
#{$lng['admin']['froxlorclients']['name']} {$arrowcode['name']}
{$lng['admin']['froxlorclients']['desc']}
{$lng['admin']['froxlorclients']['enabled']} {$arrowcode['enabled']}
{$pagingcode}
{$lng['admin']['froxlorclients']['add']}
-
-
-
-$footer diff --git a/templates/Classic/admin/froxlorclients/froxlorclients_add.tpl b/templates/Classic/admin/froxlorclients/froxlorclients_add.tpl deleted file mode 100644 index f3cad1d6..00000000 --- a/templates/Classic/admin/froxlorclients/froxlorclients_add.tpl +++ /dev/null @@ -1,43 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 {$lng['admin']['froxlorclients']['add']}
- - {$lng['admin']['froxlorclients']['longdesc_add']} -
-  {$lng['admin']['froxlorclients']['client']} - - -
{$lng['admin']['froxlorclients']['name']}:
{$lng['admin']['froxlorclients']['desc']}:
{$lng['admin']['froxlorclients']['enabled']}:$client_enabled
-
-
-
-$footer diff --git a/templates/Classic/admin/froxlorclients/froxlorclients_client.tpl b/templates/Classic/admin/froxlorclients/froxlorclients_client.tpl deleted file mode 100644 index b7b5c695..00000000 --- a/templates/Classic/admin/froxlorclients/froxlorclients_client.tpl +++ /dev/null @@ -1,17 +0,0 @@ - - - Client #{$row['id']} - {$row['name']}
{$row['desc']} - - - {$lng['panel']['yes']} - - {$lng['panel']['no']} - - - - - {$lng['admin']['froxlorclients']['view']} - - - diff --git a/templates/Classic/admin/froxlorclients/froxlorclients_edit.tpl b/templates/Classic/admin/froxlorclients/froxlorclients_edit.tpl deleted file mode 100644 index 3af4c5a5..00000000 --- a/templates/Classic/admin/froxlorclients/froxlorclients_edit.tpl +++ /dev/null @@ -1,45 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 {$lng['admin']['froxlorclients']['edit']}
- - {$lng['admin']['froxlorclients']['longdesc_add']} -
-  {$lng['admin']['froxlorclients']['client']} - - -
{$lng['admin']['froxlorclients']['name']}:
{$lng['admin']['froxlorclients']['desc']}:
{$lng['admin']['froxlorclients']['enabled']}:$client_enabled
-
-
-
-$footer diff --git a/templates/Classic/admin/froxlorclients/froxlorclients_view.tpl b/templates/Classic/admin/froxlorclients/froxlorclients_view.tpl deleted file mode 100644 index 3bf2e02e..00000000 --- a/templates/Classic/admin/froxlorclients/froxlorclients_view.tpl +++ /dev/null @@ -1,23 +0,0 @@ -$header -
- - - - - - - - - - - -
 {$lng['menue']['multiserver']['clients']} "{$client->Get('name')}"
@TODO infos about client "{$client->Get('name')}"
- {$lng['admin']['froxlorclients']['settings']}  - {$lng['admin']['froxlorclients']['deploy']}  - {$lng['panel']['edit']}  - {$lng['panel']['delete']} -
-
-
-
-$footer diff --git a/templates/Classic/admin/index/change_language.tpl b/templates/Classic/admin/index/change_language.tpl deleted file mode 100644 index dbdcf870..00000000 --- a/templates/Classic/admin/index/change_language.tpl +++ /dev/null @@ -1,23 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - -
 {$lng['menue']['main']['changelanguage']}
{$lng['login']['language']}
-
-
-
-$footer diff --git a/templates/Classic/admin/index/change_password.tpl b/templates/Classic/admin/index/change_password.tpl deleted file mode 100644 index 2f1c21ad..00000000 --- a/templates/Classic/admin/index/change_password.tpl +++ /dev/null @@ -1,31 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - - - - - - - -
 {$lng['menue']['main']['changepassword']}
{$lng['changepassword']['old_password']}
{$lng['changepassword']['new_password']}
{$lng['changepassword']['new_password_confirm']}
-
-
-
-$footer diff --git a/templates/Classic/admin/index/change_theme.tpl b/templates/Classic/admin/index/change_theme.tpl deleted file mode 100644 index bee7f614..00000000 --- a/templates/Classic/admin/index/change_theme.tpl +++ /dev/null @@ -1,23 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - -
 {$lng['menue']['main']['changetheme']}
{$lng['panel']['theme']}
-
-
-
-$footer diff --git a/templates/Classic/admin/index/index.tpl b/templates/Classic/admin/index/index.tpl deleted file mode 100644 index ce75809d..00000000 --- a/templates/Classic/admin/index/index.tpl +++ /dev/null @@ -1,153 +0,0 @@ -$header - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {$outstanding_tasks} - {$cron_last_runs} - - - - - - - - - - - - - - - - - - - - - - -
 {$lng['admin']['ressourcedetails']}
{$lng['admin']['customers']}:{$overview['number_customers']} ({$userinfo['customers']})
{$lng['customer']['domains']}:{$overview['number_domains']} ({$userinfo['domains']})
{$lng['customer']['subdomains']}:{$overview['subdomains_used']} ({$userinfo['subdomains_used']}/{$userinfo['subdomains']})
{$lng['customer']['diskspace']}:{$overview['diskspace_used']} ({$userinfo['diskspace_used']}/{$userinfo['diskspace']})
{$lng['customer']['traffic']}:{$overview['traffic_used']} ({$userinfo['traffic_used']}/{$userinfo['traffic']})
{$lng['customer']['mysqls']}:{$overview['mysqls_used']} ({$userinfo['mysqls_used']}/{$userinfo['mysqls']})
{$lng['customer']['emails']}:{$overview['emails_used']} ({$userinfo['emails_used']}/{$userinfo['emails']})
{$lng['customer']['accounts']}:{$overview['email_accounts_used']} ({$userinfo['email_accounts_used']}/{$userinfo['email_accounts']})
{$lng['customer']['forwarders']}:{$overview['email_forwarders_used']} ({$userinfo['email_forwarders_used']}/{$userinfo['email_forwarders']})
{$lng['customer']['email_quota']}:{$overview['email_quota_used']} ({$userinfo['email_quota_used']}/{$userinfo['email_quota']})
{$lng['customer']['autoresponder']}:{$userinfo['email_autoresponder_used']} ({$userinfo['email_autoresponder']})
{$lng['aps']['numberofapspackages']}:{$overview['aps_packages_used']} ({$userinfo['aps_packages_used']}/{$userinfo['aps_packages']})
{$lng['customer']['ftps']}:{$overview['ftps_used']} ({$userinfo['ftps_used']}/{$userinfo['ftps']})
{$lng['customer']['tickets']}:{$overview['tickets_used']} ({$userinfo['tickets_used']}/{$userinfo['tickets']})
{$lng['customer']['ftps']}:{$overview['ftps_used']} ({$userinfo['ftps_used']}/{$userinfo['ftps']})
{$awaitingtickets_text}
 {$lng['admin']['systemdetails']}
{$lng['admin']['serversoftware']}:{$_SERVER['SERVER_SOFTWARE']}
{$lng['admin']['phpversion']}:$phpversion
{$lng['admin']['phpmemorylimit']}:$phpmemorylimit
{$lng['admin']['mysqlserverversion']}:$mysqlserverversion
{$lng['admin']['mysqlclientversion']}:$mysqlclientversion
{$lng['admin']['webserverinterface']}:$webserverinterface
{$lng['admin']['sysload']}:$load
Kernel:$kernel
Uptime:$uptime
 {$lng['admin']['froxlordetails']}
{$lng['admin']['installedversion']}:{$version}{$branding}
{$lng['admin']['latestversion']}:$lookfornewversion_lable$lookfornewversion_lable
{$lng['admin']['newerversionavailable']}
$lookfornewversion_addinfo
-
-
-$footer diff --git a/templates/Classic/admin/index/overview_item.tpl b/templates/Classic/admin/index/overview_item.tpl deleted file mode 100644 index 09ccf36e..00000000 --- a/templates/Classic/admin/index/overview_item.tpl +++ /dev/null @@ -1,4 +0,0 @@ - - {$text}: - {$value} - diff --git a/templates/Classic/admin/ipsandports/ipsandports.tpl b/templates/Classic/admin/ipsandports/ipsandports.tpl deleted file mode 100644 index d64fce4a..00000000 --- a/templates/Classic/admin/ipsandports/ipsandports.tpl +++ /dev/null @@ -1,33 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - $ipsandports - - - - - - - - -
 {$lng['admin']['ipsandports']['ipsandports']}{$searchcode}
{$lng['admin']['ipsandports']['ip']}  {$arrowcode['ip']} : {$lng['admin']['ipsandports']['port']}  {$arrowcode['port']}ListenNameVirtualHostvHost-ContainerSpecialsettingsServerNameSSL
{$pagingcode}
{$lng['admin']['ipsandports']['add']}
-
-
-
-$footer diff --git a/templates/Classic/admin/ipsandports/ipsandports_add.tpl b/templates/Classic/admin/ipsandports/ipsandports_add.tpl deleted file mode 100644 index 9987f54d..00000000 --- a/templates/Classic/admin/ipsandports/ipsandports_add.tpl +++ /dev/null @@ -1,16 +0,0 @@ -$header -
- - - - - - - - - {$ipsandports_add_form} -
{$title} {$title}
-
-
-
-$footer diff --git a/templates/Classic/admin/ipsandports/ipsandports_edit.tpl b/templates/Classic/admin/ipsandports/ipsandports_edit.tpl deleted file mode 100644 index c56269a7..00000000 --- a/templates/Classic/admin/ipsandports/ipsandports_edit.tpl +++ /dev/null @@ -1,17 +0,0 @@ -$header -
- - - - - - - - - - {$ipsandports_edit_form} -
{$title} {$title}
-
-
-
-$footer diff --git a/templates/Classic/admin/ipsandports/ipsandports_ipandport.tpl b/templates/Classic/admin/ipsandports/ipsandports_ipandport.tpl deleted file mode 100644 index 5543f6e8..00000000 --- a/templates/Classic/admin/ipsandports/ipsandports_ipandport.tpl +++ /dev/null @@ -1,11 +0,0 @@ - - {$row['ip']}:{$row['port']} - {$lng['panel']['yes']}{$lng['panel']['no']} - {$lng['panel']['yes']}{$lng['panel']['no']} - {$lng['panel']['yes']}{$lng['panel']['no']} - {$lng['panel']['yes']}{$lng['panel']['no']} - {$lng['panel']['yes']}{$lng['panel']['no']} - {$lng['panel']['yes']}{$lng['panel']['no']} - {$lng['panel']['edit']} - {$lng['panel']['delete']} - diff --git a/templates/Classic/admin/logger/logger.tpl b/templates/Classic/admin/logger/logger.tpl deleted file mode 100644 index ee187efb..00000000 --- a/templates/Classic/admin/logger/logger.tpl +++ /dev/null @@ -1,30 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - - - $log - - - -
 {$lng['menue']['logger']['logger']}{$searchcode}
{$lng['logger']['truncate']}
{$lng['logger']['date']}  {$arrowcode['date']}{$lng['logger']['type']}  {$arrowcode['type']}{$lng['logger']['user']}  {$arrowcode['user']}
{$lng['logger']['truncate']}
-
-
-
-$footer diff --git a/templates/Classic/admin/logger/logger_action.tpl b/templates/Classic/admin/logger/logger_action.tpl deleted file mode 100644 index 0649d4b7..00000000 --- a/templates/Classic/admin/logger/logger_action.tpl +++ /dev/null @@ -1,3 +0,0 @@ - - {$row['action']} - \ No newline at end of file diff --git a/templates/Classic/admin/logger/logger_log.tpl b/templates/Classic/admin/logger/logger_log.tpl deleted file mode 100644 index e1eec3ab..00000000 --- a/templates/Classic/admin/logger/logger_log.tpl +++ /dev/null @@ -1,6 +0,0 @@ - - {$row['date']} - {$row['type']} - {$row['user']} - {$row['text']} - diff --git a/templates/Classic/admin/message/message.tpl b/templates/Classic/admin/message/message.tpl deleted file mode 100644 index b960d6f2..00000000 --- a/templates/Classic/admin/message/message.tpl +++ /dev/null @@ -1,39 +0,0 @@ -$header -
- - - - - - - - -
 {$successmessage}
-
-
-
- - - - - - - - - - - - - - - - - - - -
 {$lng['admin']['message']}
{$lng['admin']['receipient']}
{$lng['admin']['subject']}
{$lng['admin']['text']}
-
-
-
-$footer - diff --git a/templates/Classic/admin/phpconfig/overview.tpl b/templates/Classic/admin/phpconfig/overview.tpl deleted file mode 100644 index 0582453b..00000000 --- a/templates/Classic/admin/phpconfig/overview.tpl +++ /dev/null @@ -1,21 +0,0 @@ -$header - - - - - - - - - - - - - $tablecontent - - - -
 {$lng['menue']['phpsettings']['maintitle']} 
{$lng['admin']['phpsettings']['description']}{$lng['admin']['phpsettings']['activedomains']}{$lng['admin']['phpsettings']['binary']}{$lng['admin']['phpsettings']['file_extensions']}{$lng['admin']['phpsettings']['actions']}
{$lng['admin']['phpsettings']['addnew']}
-
-
-$footer diff --git a/templates/Classic/admin/phpconfig/overview_add.tpl b/templates/Classic/admin/phpconfig/overview_add.tpl deleted file mode 100644 index 018bef65..00000000 --- a/templates/Classic/admin/phpconfig/overview_add.tpl +++ /dev/null @@ -1,67 +0,0 @@ -$header -
- - - - - - - - - {$phpconfig_add_form} -
{$title} {$title}
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  {$lng['admin']['phpconfig']['template_replace_vars']}
{SAFE_MODE}{$lng['admin']['phpconfig']['safe_mode']}
{PEAR_DIR}{$lng['admin']['phpconfig']['pear_dir']}
{OPEN_BASEDIR_C}{$lng['admin']['phpconfig']['open_basedir_c']}
{OPEN_BASEDIR}{$lng['admin']['phpconfig']['open_basedir']}
{OPEN_BASEDIR_GLOBAL}{$lng['admin']['phpconfig']['open_basedir_global']}
{TMP_DIR}{$lng['admin']['phpconfig']['tmp_dir']}
{CUSTOMER_EMAIL}{$lng['admin']['phpconfig']['customer_email']}
{ADMIN_EMAIL}{$lng['admin']['phpconfig']['admin_email']}
{DOMAIN}{$lng['admin']['phpconfig']['domain']}
{CUSTOMER}{$lng['admin']['phpconfig']['customer']}
{ADMIN}{$lng['admin']['phpconfig']['admin']}
-
-
-$footer diff --git a/templates/Classic/admin/phpconfig/overview_edit.tpl b/templates/Classic/admin/phpconfig/overview_edit.tpl deleted file mode 100644 index 0ee6760b..00000000 --- a/templates/Classic/admin/phpconfig/overview_edit.tpl +++ /dev/null @@ -1,68 +0,0 @@ -$header -
- - - - - - - - - - {$phpconfig_edit_form} -
{$title} {$title}
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  {$lng['admin']['phpconfig']['template_replace_vars']}
{SAFE_MODE}{$lng['admin']['phpconfig']['safe_mode']}
{PEAR_DIR}{$lng['admin']['phpconfig']['pear_dir']}
{OPEN_BASEDIR_C}{$lng['admin']['phpconfig']['open_basedir_c']}
{OPEN_BASEDIR}{$lng['admin']['phpconfig']['open_basedir']}
{OPEN_BASEDIR_GLOBAL}{$lng['admin']['phpconfig']['open_basedir_global']}
{TMP_DIR}{$lng['admin']['phpconfig']['tmp_dir']}
{CUSTOMER_EMAIL}{$lng['admin']['phpconfig']['customer_email']}
{ADMIN_EMAIL}{$lng['admin']['phpconfig']['admin_email']}
{DOMAIN}{$lng['admin']['phpconfig']['domain']}
{CUSTOMER}{$lng['admin']['phpconfig']['customer']}
{ADMIN}{$lng['admin']['phpconfig']['admin']}
-
-
-$footer diff --git a/templates/Classic/admin/phpconfig/overview_overview.tpl b/templates/Classic/admin/phpconfig/overview_overview.tpl deleted file mode 100644 index 64fdb4b9..00000000 --- a/templates/Classic/admin/phpconfig/overview_overview.tpl +++ /dev/null @@ -1,10 +0,0 @@ - - {$row['description']} - {$domains} - {$row['binary']} - {$row['file_extensions']} - - {$lng['panel']['edit']}
- {$lng['panel']['delete']}
- - diff --git a/templates/Classic/admin/settings/settings.tpl b/templates/Classic/admin/settings/settings.tpl deleted file mode 100644 index ecafc7ea..00000000 --- a/templates/Classic/admin/settings/settings.tpl +++ /dev/null @@ -1,12 +0,0 @@ - - - - - $fields - - - -
 {$lng['admin']['serversettings']} - [{$lng['admin']['configfiles']['compactoverview']}]
- -
diff --git a/templates/Classic/admin/settings/settings_form_begin.tpl b/templates/Classic/admin/settings/settings_form_begin.tpl deleted file mode 100644 index 3aea38a6..00000000 --- a/templates/Classic/admin/settings/settings_form_begin.tpl +++ /dev/null @@ -1,6 +0,0 @@ -$header -
- - - - diff --git a/templates/Classic/admin/settings/settings_form_end.tpl b/templates/Classic/admin/settings/settings_form_end.tpl deleted file mode 100644 index a9a6eab1..00000000 --- a/templates/Classic/admin/settings/settings_form_end.tpl +++ /dev/null @@ -1,7 +0,0 @@ - - - -
-
-
-$footer diff --git a/templates/Classic/admin/settings/settings_group.tpl b/templates/Classic/admin/settings/settings_group.tpl deleted file mode 100644 index 2b52e513..00000000 --- a/templates/Classic/admin/settings/settings_group.tpl +++ /dev/null @@ -1,8 +0,0 @@ - - -  {$groupdetails['title']} - - - - - diff --git a/templates/Classic/admin/settings/settings_overview.tpl b/templates/Classic/admin/settings/settings_overview.tpl deleted file mode 100644 index 1be1168b..00000000 --- a/templates/Classic/admin/settings/settings_overview.tpl +++ /dev/null @@ -1,14 +0,0 @@ - - - - - $fields - - - -
-  {$lng['admin']['configfiles']['serverconfiguration']} - [{$lng['admin']['configfiles']['overview']}] -
-   -
diff --git a/templates/Classic/admin/settings/settings_overviewgroup.tpl b/templates/Classic/admin/settings/settings_overviewgroup.tpl deleted file mode 100644 index 390677bf..00000000 --- a/templates/Classic/admin/settings/settings_overviewgroup.tpl +++ /dev/null @@ -1,11 +0,0 @@ - - -  {$title} - - {$option} - - - {$lng['admin']['configfiles']['serverconfiguration']} - - - diff --git a/templates/Classic/admin/settings/updatecounters.tpl b/templates/Classic/admin/settings/updatecounters.tpl deleted file mode 100644 index bb1dea84..00000000 --- a/templates/Classic/admin/settings/updatecounters.tpl +++ /dev/null @@ -1,18 +0,0 @@ -$header - - - - -{$customers} - - - -{$admins} -
-  {$lng['admin']['updatecounters']}: {$lng['admin']['customers']} -
-  {$lng['admin']['updatecounters']}: {$lng['admin']['admins']} -
-
-
-$footer diff --git a/templates/Classic/admin/settings/updatecounters_row_admin.tpl b/templates/Classic/admin/settings/updatecounters_row_admin.tpl deleted file mode 100644 index bb0e4fa2..00000000 --- a/templates/Classic/admin/settings/updatecounters_row_admin.tpl +++ /dev/null @@ -1,73 +0,0 @@ - - - {$admin['loginname']}{$admin['loginname']}: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
{$lng['admin']['customers']}:style="color:green"style="color:red">{$admin['customers_used']} -> {$admin['customers_used_new']}
{$lng['customer']['domains']}:style="color:green"style="color:red">{$admin['domains_used']} -> {$admin['domains_used_new']}
{$lng['customer']['subdomains']}:style="color:green"style="color:red">{$admin['subdomains_used']} -> {$admin['subdomains_used_new']}
{$lng['customer']['diskspace']}:style="color:green"style="color:red">{$admin['diskspace_used']} -> {$admin['diskspace_used_new']}
{$lng['customer']['traffic']}:style="color:green"style="color:red">{$admin['traffic_used']} -> {$admin['traffic_used_new']}
{$lng['customer']['mysqls']}:style="color:green"style="color:red">{$admin['mysqls_used']} -> {$admin['mysqls_used_new']}
{$lng['customer']['emails']}:style="color:green"style="color:red">{$admin['emails_used']} -> {$admin['emails_used_new']}
{$lng['customer']['accounts']}:style="color:green"style="color:red">{$admin['email_accounts_used']} -> {$admin['email_accounts_used_new']}
{$lng['customer']['forwarders']}:style="color:green"style="color:red">{$admin['email_forwarders_used']} -> {$admin['email_forwarders_used_new']}
{$lng['customer']['email_quota']}:style="color:green"style="color:red">{$admin['email_quota_used']} -> {$admin['email_quota_used_new']}
{$lng['customer']['autoresponder']}:style="color:green"style="color:red">{$admin['email_autoresponder_used']} -> {$admin['email_autoresponder_used_new']}
{$lng['customer']['ftps']}:style="color:green"style="color:red">{$admin['ftps_used']} -> {$admin['ftps_used_new']}
{$lng['customer']['tickets']}:style="color:green"style="color:red">{$admin['tickets_used']} -> {$admin['tickets_used_new']}
{$lng['customer']['aps']}:style="color:green"style="color:red">{$admin['aps_packages_used']} -> {$admin['aps_packages_used_new']}
- - diff --git a/templates/Classic/admin/settings/updatecounters_row_customer.tpl b/templates/Classic/admin/settings/updatecounters_row_customer.tpl deleted file mode 100644 index 10415744..00000000 --- a/templates/Classic/admin/settings/updatecounters_row_customer.tpl +++ /dev/null @@ -1,57 +0,0 @@ - - - {$customer['name']}, {$customer['firstname']} | {$customer['company']} ({$customer['loginname']}): - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
{$lng['customer']['subdomains']}:style="color:green"style="color:red">{$customer['subdomains_used']} -> {$customer['subdomains_used_new']}
{$lng['customer']['mysqls']}:style="color:green"style="color:red">{$customer['mysqls_used']} -> {$customer['mysqls_used_new']}
{$lng['customer']['emails']}:style="color:green"style="color:red">{$customer['emails_used']} -> {$customer['emails_used_new']}
{$lng['customer']['accounts']}:style="color:green"style="color:red">{$customer['email_accounts_used']} -> {$customer['email_accounts_used_new']}
{$lng['customer']['forwarders']}:style="color:green"style="color:red">{$customer['email_forwarders_used']} -> {$customer['email_forwarders_used_new']}
{$lng['customer']['email_quota']}:style="color:green"style="color:red">{$customer['email_quota_used']} -> {$customer['email_quota_used_new']}
{$lng['customer']['autoresponder']}:style="color:green"style="color:red">{$customer['email_autoresponder_used']} -> {$customer['email_autoresponder_used_new']}
{$lng['customer']['ftps']}:style="color:green"style="color:red">{$customer['ftps_used']} -> {$customer['ftps_used_new']}
{$lng['customer']['tickets']}:style="color:green"style="color:red">{$customer['tickets_used']} -> {$customer['tickets_used_new']}
{$lng['customer']['aps']}:style="color:green"style="color:red">{$customer['aps_packages_used']} -> {$customer['aps_packages_used_new']}
- - diff --git a/templates/Classic/admin/templates/filetemplates_add.tpl b/templates/Classic/admin/templates/filetemplates_add.tpl deleted file mode 100644 index fcbaff9f..00000000 --- a/templates/Classic/admin/templates/filetemplates_add.tpl +++ /dev/null @@ -1,55 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - -
 {$lng['admin']['templates']['template_add']}
{$lng['admin']['templates']['action']}
{$lng['admin']['templates']['filecontent']}
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
  {$lng['admin']['templates']['template_replace_vars']}
{$lng['admin']['templates']['index_html']}
{SERVERNAME}:{$lng['admin']['templates']['SERVERNAME']}
{CUSTOMER}:{$lng['admin']['templates']['CUSTOMER']}
{ADMIN}:{$lng['admin']['templates']['ADMIN']}
{CUSTOMER_EMAIL}:{$lng['admin']['templates']['CUSTOMER_EMAIL']}
{ADMIN_EMAIL}:{$lng['admin']['templates']['ADMIN_EMAIL']}
-
-
-
-$footer diff --git a/templates/Classic/admin/templates/filetemplates_edit.tpl b/templates/Classic/admin/templates/filetemplates_edit.tpl deleted file mode 100644 index 096d1765..00000000 --- a/templates/Classic/admin/templates/filetemplates_edit.tpl +++ /dev/null @@ -1,56 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - - -
 {$lng['admin']['templates']['template_add']}
{$lng['admin']['templates']['action']}{$lng['admin']['templates'][$row['varname']]}
{$lng['admin']['templates']['filecontent']}
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
  {$lng['admin']['templates']['template_replace_vars']}
{$lng['admin']['templates']['index_html']}
{SERVERNAME}:{$lng['admin']['templates']['SERVERNAME']}
{CUSTOMER}:{$lng['admin']['templates']['CUSTOMER']}
{ADMIN}:{$lng['admin']['templates']['ADMIN']}
{CUSTOMER_EMAIL}:{$lng['admin']['templates']['CUSTOMER_EMAIL']}
{ADMIN_EMAIL}:{$lng['admin']['templates']['ADMIN_EMAIL']}
-
-
-
-$footer diff --git a/templates/Classic/admin/templates/templates.tpl b/templates/Classic/admin/templates/templates.tpl deleted file mode 100644 index 63f05d49..00000000 --- a/templates/Classic/admin/templates/templates.tpl +++ /dev/null @@ -1,37 +0,0 @@ -$header - - - - - - - - - - $templates - - - - - -
 {$lng['admin']['templates']['templates']}
{$lng['login']['language']}{$lng['admin']['templates']['action']} 
{$lng['admin']['templates']['template_add']}
-
- - - - - - - - - - $filetemplates - - - - - -
 {$lng['admin']['templates']['filetemplates']}
{$lng['admin']['templates']['action']}  
{$lng['admin']['templates']['template_add']}
-
-
-$footer diff --git a/templates/Classic/admin/templates/templates_add_1.tpl b/templates/Classic/admin/templates/templates_add_1.tpl deleted file mode 100644 index 2024db70..00000000 --- a/templates/Classic/admin/templates/templates_add_1.tpl +++ /dev/null @@ -1,21 +0,0 @@ -$header -
- - - - - - - - - - - - - - -
 {$lng['admin']['templates']['template_add']}
{$lng['login']['language']}:
-
-
-
-$footer diff --git a/templates/Classic/admin/templates/templates_add_2.tpl b/templates/Classic/admin/templates/templates_add_2.tpl deleted file mode 100644 index 113a6d59..00000000 --- a/templates/Classic/admin/templates/templates_add_2.tpl +++ /dev/null @@ -1,209 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
 {$lng['admin']['templates']['template_add']}
{$lng['login']['language']}$language
{$lng['admin']['templates']['action']}
{$lng['admin']['templates']['subject']}
{$lng['admin']['templates']['mailbody']}
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  {$lng['admin']['templates']['template_replace_vars']}
{$lng['admin']['templates']['createcustomer']}
{SALUTATION}:{$lng['admin']['templates']['SALUTATION']}
{FIRSTNAME}:{$lng['admin']['templates']['FIRSTNAME']}
{NAME}:{$lng['admin']['templates']['NAME']}
{COMPANY}:{$lng['admin']['templates']['COMPANY']}
{USERNAME}:{$lng['admin']['templates']['USERNAME']}
{PASSWORD}:{$lng['admin']['templates']['PASSWORD']}
{$lng['admin']['templates']['pop_success']}
{EMAIL}:{$lng['admin']['templates']['EMAIL']}
{$lng['admin']['templates']['pop_success_alternative']}
{EMAIL}:{$lng['admin']['templates']['EMAIL']}
{PASSWORD}:{$lng['admin']['templates']['EMAIL_PASSWORD']}
{$lng['admin']['templates']['forgotpwd']}
{SALUTATION}:{$lng['admin']['templates']['SALUTATION']}
{USERNAME}:{$lng['admin']['templates']['USERNAME']}
{PASSWORD}:{$lng['admin']['templates']['PASSWORD']}
{$lng['admin']['templates']['trafficmaxpercent']}
{TRAFFIC}:{$lng['admin']['templates']['TRAFFIC']}
{TRAFFICUSED}:{$lng['admin']['templates']['TRAFFICUSED']}
{MAX_PERCENT}:{$lng['admin']['templates']['MAX_PERCENT']}
{USAGE_PERCENT}:{$lng['admin']['templates']['USAGE_PERCENT']}
{$lng['admin']['templates']['diskmaxpercent']}
{DISKAVAILABLE}:{$lng['admin']['templates']['DISKAVAILABLE']}
{DISKUSED}:{$lng['admin']['templates']['DISKUSED']}
{MAX_PERCENT}:{$lng['admin']['templates']['MAX_PERCENT']}
{USAGE_PERCENT}:{$lng['admin']['templates']['USAGE_PERCENT']}
{$lng['admin']['templates']['ticket']}
{SUBJECT}:{$lng['admin']['templates']['SUBJECT']}
{SALUTATION}:{$lng['admin']['templates']['SALUTATION']}
{FIRSTNAME}:{$lng['admin']['templates']['FIRSTNAME']}
{NAME}:{$lng['admin']['templates']['NAME']}
{COMPANY}:{$lng['admin']['templates']['COMPANY']}
{$lng['admin']['templates']['newdatabase']}
{CUST_NAME}:{$lng['admin']['templates']['CUST_NAME']}
{DB_NAME}:{$lng['admin']['templates']['DB_NAME']}
{DB_PASS}:{$lng['admin']['templates']['DB_PASS']}
{DB_DESC}:{$lng['admin']['templates']['DB_DESC']}
{DB_SRV}:{$lng['admin']['templates']['DB_SRV']}
{PMA_URI}:{$lng['admin']['templates']['PMA_URI']}
{$lng['admin']['templates']['newftpuser']}
{CUST_NAME}:{$lng['admin']['templates']['CUST_NAME']}
{USR_NAME}:{$lng['admin']['templates']['USR_NAME']}
{USR_PASS}:{$lng['admin']['templates']['USR_PASS']}
{USR_PATH}:{$lng['admin']['templates']['USR_PATH']}
-
-
-
-$footer diff --git a/templates/Classic/admin/templates/templates_edit.tpl b/templates/Classic/admin/templates/templates_edit.tpl deleted file mode 100644 index 2b294d98..00000000 --- a/templates/Classic/admin/templates/templates_edit.tpl +++ /dev/null @@ -1,211 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 {$lng['admin']['templates']['template_edit']}
{$lng['login']['language']}{$result['language']}
{$lng['admin']['templates']['action']}$template
{$lng['admin']['templates']['subject']}
{$lng['admin']['templates']['mailbody']}
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  {$lng['admin']['templates']['template_replace_vars']}
{$lng['admin']['templates']['createcustomer']}
{SALUTATION}:{$lng['admin']['templates']['SALUTATION']}
{FIRSTNAME}:{$lng['admin']['templates']['FIRSTNAME']}
{NAME}:{$lng['admin']['templates']['NAME']}
{COMPANY}:{$lng['admin']['templates']['COMPANY']}
{USERNAME}:{$lng['admin']['templates']['USERNAME']}
{PASSWORD}:{$lng['admin']['templates']['PASSWORD']}
{$lng['admin']['templates']['pop_success']}
{EMAIL}:{$lng['admin']['templates']['EMAIL']}
{$lng['admin']['templates']['pop_success_alternative']}
{EMAIL}:{$lng['admin']['templates']['EMAIL']}
{PASSWORD}:{$lng['admin']['templates']['EMAIL_PASSWORD']}
{$lng['admin']['templates']['forgotpwd']}
{SALUTATION}:{$lng['admin']['templates']['SALUTATION']}
{USERNAME}:{$lng['admin']['templates']['USERNAME']}
{PASSWORD}:{$lng['admin']['templates']['PASSWORD']}
{$lng['admin']['templates']['trafficmaxpercent']}
{TRAFFIC}:{$lng['admin']['templates']['TRAFFIC']}
{TRAFFICUSED}:{$lng['admin']['templates']['TRAFFICUSED']}
{MAX_PERCENT}:{$lng['admin']['templates']['MAX_PERCENT']}
{USAGE_PERCENT}:{$lng['admin']['templates']['USAGE_PERCENT']}
{$lng['admin']['templates']['diskmaxpercent']}
{DISKAVAILABLE}:{$lng['admin']['templates']['DISKAVAILABLE']}
{DISKUSED}:{$lng['admin']['templates']['DISKUSED']}
{MAX_PERCENT}:{$lng['admin']['templates']['MAX_PERCENT']}
{USAGE_PERCENT}:{$lng['admin']['templates']['USAGE_PERCENT']}
{$lng['admin']['templates']['ticket']}
{SUBJECT}:{$lng['admin']['templates']['SUBJECT']}
{SALUTATION}:{$lng['admin']['templates']['SALUTATION']}
{FIRSTNAME}:{$lng['admin']['templates']['FIRSTNAME']}
{NAME}:{$lng['admin']['templates']['NAME']}
{COMPANY}:{$lng['admin']['templates']['COMPANY']}
{$lng['admin']['templates']['newdatabase']}
{CUST_NAME}:{$lng['admin']['templates']['CUST_NAME']}
{DB_NAME}:{$lng['admin']['templates']['DB_NAME']}
{DB_PASS}:{$lng['admin']['templates']['DB_PASS']}
{DB_DESC}:{$lng['admin']['templates']['DB_DESC']}
{DB_SRV}:{$lng['admin']['templates']['DB_SRV']}
{PMA_URI}:{$lng['admin']['templates']['PMA_URI']}
{$lng['admin']['templates']['newftpuser']}
{CUST_NAME}:{$lng['admin']['templates']['CUST_NAME']}
{USR_NAME}:{$lng['admin']['templates']['USR_NAME']}
{USR_PASS}:{$lng['admin']['templates']['USR_PASS']}
{USR_PATH}:{$lng['admin']['templates']['USR_PATH']}
-
-
-
-$footer diff --git a/templates/Classic/admin/templates/templates_filetemplate.tpl b/templates/Classic/admin/templates/templates_filetemplate.tpl deleted file mode 100644 index 594eb432..00000000 --- a/templates/Classic/admin/templates/templates_filetemplate.tpl +++ /dev/null @@ -1,5 +0,0 @@ - - {$lng['admin']['templates'][$row['varname']]} - {$lng['panel']['delete']} - {$lng['panel']['edit']} - diff --git a/templates/Classic/admin/templates/templates_template.tpl b/templates/Classic/admin/templates/templates_template.tpl deleted file mode 100644 index b9c44990..00000000 --- a/templates/Classic/admin/templates/templates_template.tpl +++ /dev/null @@ -1,6 +0,0 @@ - - {$language} - {$template} - {$lng['panel']['delete']} - {$lng['panel']['edit']} - diff --git a/templates/Classic/admin/tickets/archive.tpl b/templates/Classic/admin/tickets/archive.tpl deleted file mode 100644 index c7d5059a..00000000 --- a/templates/Classic/admin/tickets/archive.tpl +++ /dev/null @@ -1,63 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - $tickets -
 {$lng['ticket']['lastarchived']} 
{$lng['ticket']['archivedtime']}{$lng['ticket']['ticket_answers']}{$lng['ticket']['subject']}{$lng['ticket']['lastreplier']}{$lng['ticket']['priority']}
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 {$lng['ticket']['search']}
{$lng['ticket']['subject']}:
{$lng['ticket']['priority']}:{$priorities_options}
{$lng['ticket']['category']}:{$category_options}
{$lng['ticket']['lastchange']}:{$lng['ticket']['lastchange_from']}

{$lng['ticket']['lastchange_to']}
{$lng['ticket']['message']}:
{$lng['ticket']['customer']}:
-
-$footer diff --git a/templates/Classic/admin/tickets/archived_tickets.tpl b/templates/Classic/admin/tickets/archived_tickets.tpl deleted file mode 100644 index cb8336a4..00000000 --- a/templates/Classic/admin/tickets/archived_tickets.tpl +++ /dev/null @@ -1,10 +0,0 @@ - - {$ticket['lastchange']} - {$ticket['ticket_answers']} - {$ticket['subject']} - {$ticket['lastreplier']} - {$ticket['priority']} - - {$lng['ticket']['show']} - - diff --git a/templates/Classic/admin/tickets/archivesearch.tpl b/templates/Classic/admin/tickets/archivesearch.tpl deleted file mode 100644 index 11855a36..00000000 --- a/templates/Classic/admin/tickets/archivesearch.tpl +++ /dev/null @@ -1,31 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - $tickets - - - - - - -
 {$lng['ticket']['archivesearch']} 
{$lng['ticket']['archivedtime']}{$lng['ticket']['ticket_answers']}{$lng['ticket']['subject']}{$lng['ticket']['lastreplier']}{$lng['ticket']['priority']}
{$lng['ticket']['noresults']}
-
-
-
-$footer diff --git a/templates/Classic/admin/tickets/categories.tpl b/templates/Classic/admin/tickets/categories.tpl deleted file mode 100644 index 6b8d3bdf..00000000 --- a/templates/Classic/admin/tickets/categories.tpl +++ /dev/null @@ -1,35 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - - - $ticketcategories - - - - - - - - -
 {$lng['menue']['ticket']['categories']}{$searchcode}
{$lng['ticket']['ticket_newcateory']}
{$lng['ticket']['category']}  {$arrowcode['name']}{$lng['ticket']['logicalorder']}  {$arrowcode['logicalorder']}{$lng['ticket']['ticketcount']}  {$arrowcode['ticketcount']}
{$pagingcode}
{$lng['ticket']['ticket_newcateory']}
-
-
-
-$footer diff --git a/templates/Classic/admin/tickets/tickets.tpl b/templates/Classic/admin/tickets/tickets.tpl deleted file mode 100644 index 53a20e4c..00000000 --- a/templates/Classic/admin/tickets/tickets.tpl +++ /dev/null @@ -1,45 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - - - - - - $tickets - - - - - - - - - - - - - - - -
 {$lng['menue']['ticket']['ticket']}{$searchcode}
{$lng['ticket']['ticket_new']}
{$lng['ticket']['lastchange']}  {$arrowcode['lastchange']}{$lng['ticket']['ticket_answers']}  {$arrowcode['ticket_answers']}{$lng['ticket']['subject']}  {$arrowcode['subject']}{$lng['ticket']['status']}  {$arrowcode['status']}{$lng['ticket']['lastreplier']}  {$arrowcode['lastreplier']}{$lng['ticket']['priority']}  {$arrowcode['priority']}
{$pagingcode}
{$lng['ticket']['ticket_new']}
{$lng['admin']['ticket_nocustomeraddingavailable']}
-
-
-
-$footer diff --git a/templates/Classic/admin/tickets/tickets_categories.tpl b/templates/Classic/admin/tickets/tickets_categories.tpl deleted file mode 100644 index 9dba7c1d..00000000 --- a/templates/Classic/admin/tickets/tickets_categories.tpl +++ /dev/null @@ -1,11 +0,0 @@ - - {$row['name']} - {$row['logicalorder']} - {$row['ticketcount']} ({$row['ticketcountnotclosed']} {$lng['ticket']['open']} | {$closedtickets_count} {$lng['ticket']['closed']}) - - {$lng['panel']['edit']} - - - {$lng['panel']['delete']} - - diff --git a/templates/Classic/admin/tickets/tickets_customer.tpl b/templates/Classic/admin/tickets/tickets_customer.tpl deleted file mode 100644 index 2168ea9b..00000000 --- a/templates/Classic/admin/tickets/tickets_customer.tpl +++ /dev/null @@ -1,3 +0,0 @@ - - {$customer} - diff --git a/templates/Classic/admin/tickets/tickets_editcategory.tpl b/templates/Classic/admin/tickets/tickets_editcategory.tpl deleted file mode 100644 index 31ab5d76..00000000 --- a/templates/Classic/admin/tickets/tickets_editcategory.tpl +++ /dev/null @@ -1,17 +0,0 @@ -$header -
- - - - - - - - - - {$category_edit_form} -
{$title} {$title}
-
-
-
-$footer diff --git a/templates/Classic/admin/tickets/tickets_new.tpl b/templates/Classic/admin/tickets/tickets_new.tpl deleted file mode 100644 index a80efcd0..00000000 --- a/templates/Classic/admin/tickets/tickets_new.tpl +++ /dev/null @@ -1,16 +0,0 @@ -$header -
- - - - - - - - - {$ticket_new_form} -
{$title} {$title}
-
-
-
-$footer diff --git a/templates/Classic/admin/tickets/tickets_newcategory.tpl b/templates/Classic/admin/tickets/tickets_newcategory.tpl deleted file mode 100644 index 84eef559..00000000 --- a/templates/Classic/admin/tickets/tickets_newcategory.tpl +++ /dev/null @@ -1,16 +0,0 @@ -$header -
- - - - - - - - - {$category_new_form} -
{$title} {$title}
-
-
-
-$footer diff --git a/templates/Classic/admin/tickets/tickets_reply.tpl b/templates/Classic/admin/tickets/tickets_reply.tpl deleted file mode 100644 index f83cad4e..00000000 --- a/templates/Classic/admin/tickets/tickets_reply.tpl +++ /dev/null @@ -1,32 +0,0 @@ -$header -
- - - - - - - $ticket_replies - - - - - - - {$ticket_reply_form} -
{$title} {$title}
-
- - - - - - - - -
 {$lng['ticket']['ticket_reopen']}
{$lng['ticket']['ticket_reopen']}
-
-
-
-
-$footer diff --git a/templates/Classic/admin/tickets/tickets_tickets.tpl b/templates/Classic/admin/tickets/tickets_tickets.tpl deleted file mode 100644 index 1750d351..00000000 --- a/templates/Classic/admin/tickets/tickets_tickets.tpl +++ /dev/null @@ -1,28 +0,0 @@ - - {$row['lastchange']} - {$row['ticket_answers']} - {$row['subject']} - {$row['status']} - {$row['lastreplier']} - {$row['priority']} - - - {$lng['ticket']['show']} - {$lng['ticket']['answer']} - - - - - {$lng['ticket']['close']} - - - {$lng['ticket']['reopen']} - - - - {$lng['ticket']['archive']} - - - {$lng['panel']['delete']} - - diff --git a/templates/Classic/admin/tickets/tickets_tickets_list.tpl b/templates/Classic/admin/tickets/tickets_tickets_list.tpl deleted file mode 100644 index 3966dba9..00000000 --- a/templates/Classic/admin/tickets/tickets_tickets_list.tpl +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - -
  {$lastchange} {$lng['ticket']['by']} {$by}
{$subject}
{$message}
diff --git a/templates/Classic/admin/tickets/tickets_tickets_main.tpl b/templates/Classic/admin/tickets/tickets_tickets_main.tpl deleted file mode 100644 index d380b887..00000000 --- a/templates/Classic/admin/tickets/tickets_tickets_main.tpl +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - -
  {$dt} {$lng['ticket']['by']} {$by} ({$status})
{$subject}
{$message}
diff --git a/templates/Classic/admin/tickets/tickets_view.tpl b/templates/Classic/admin/tickets/tickets_view.tpl deleted file mode 100644 index 599bc223..00000000 --- a/templates/Classic/admin/tickets/tickets_view.tpl +++ /dev/null @@ -1,17 +0,0 @@ -$header - - - - - - - -
 {$lng['ticket']['ticket_delete']}
{$lng['panel']['delete']}
-
-
- - $ticket_replies - -
-
-$footer diff --git a/templates/Classic/admin/traffic/index.tpl b/templates/Classic/admin/traffic/index.tpl deleted file mode 100644 index f63e612c..00000000 --- a/templates/Classic/admin/traffic/index.tpl +++ /dev/null @@ -1,31 +0,0 @@ -$header - - - {$stats_tables} -
-
-$footer diff --git a/templates/Classic/admin/traffic/index_table.tpl b/templates/Classic/admin/traffic/index_table.tpl deleted file mode 100644 index c8a90d2e..00000000 --- a/templates/Classic/admin/traffic/index_table.tpl +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - {$domain_list} - - - {$total_list} - - - - -
 {$lng['traffic']['trafficoverview']} {$overview['type']} {$overview['year']}
{$overview['type']}{$lng['traffic']['months']['jan']} - {$lng['traffic']['months']['feb']} - {$lng['traffic']['months']['mar']} - {$lng['traffic']['months']['apr']} - {$lng['traffic']['months']['may']} - {$lng['traffic']['months']['jun']} - {$lng['traffic']['months']['jul']} - {$lng['traffic']['months']['aug']} - {$lng['traffic']['months']['sep']} - {$lng['traffic']['months']['oct']} - {$lng['traffic']['months']['nov']} - {$lng['traffic']['months']['dec']} -
 
- -
-
- diff --git a/templates/Classic/admin/traffic/index_table_row.tpl b/templates/Classic/admin/traffic/index_table_row.tpl deleted file mode 100644 index abc3a491..00000000 --- a/templates/Classic/admin/traffic/index_table_row.tpl +++ /dev/null @@ -1,15 +0,0 @@ - - {$virtual_host['name']} [{$lng['traffic']['details']}] - {$virtual_host['jan']} - {$virtual_host['feb']} - {$virtual_host['mar']} - {$virtual_host['apr']} - {$virtual_host['may']} - {$virtual_host['jun']} - {$virtual_host['jul']} - {$virtual_host['aug']} - {$virtual_host['sep']} - {$virtual_host['oct']} - {$virtual_host['nov']} - {$virtual_host['dec']} - diff --git a/templates/Classic/admin/update/index.tpl b/templates/Classic/admin/update/index.tpl deleted file mode 100644 index 2380a4cb..00000000 --- a/templates/Classic/admin/update/index.tpl +++ /dev/null @@ -1,21 +0,0 @@ -$header -
- - - - - - - - - - - - - - -
 {$lng['update']['update']}
{$update_information}
-
-
-
-$footer diff --git a/templates/Classic/admin/update/noupdatesavail.tpl b/templates/Classic/admin/update/noupdatesavail.tpl deleted file mode 100644 index cc95e160..00000000 --- a/templates/Classic/admin/update/noupdatesavail.tpl +++ /dev/null @@ -1,13 +0,0 @@ -$header - - - - - - - - -
  {$lng['update']['update']}
$success_message
{$lng['success']['clickheretocontinue']}
-
-
-$footer diff --git a/templates/Classic/admin/update/preconfigitem.tpl b/templates/Classic/admin/update/preconfigitem.tpl deleted file mode 100644 index 5bf40f2c..00000000 --- a/templates/Classic/admin/update/preconfigitem.tpl +++ /dev/null @@ -1,6 +0,0 @@ -
-

- {$description} - {$question} -

-
diff --git a/templates/Classic/admin/update/update_end.tpl b/templates/Classic/admin/update/update_end.tpl deleted file mode 100644 index 5cde0659..00000000 --- a/templates/Classic/admin/update/update_end.tpl +++ /dev/null @@ -1,10 +0,0 @@ - - - - - {$lng['success']['clickheretocontinue']} - - -
-
-$footer diff --git a/templates/Classic/admin/update/update_start.tpl b/templates/Classic/admin/update/update_start.tpl deleted file mode 100644 index 62d97172..00000000 --- a/templates/Classic/admin/update/update_start.tpl +++ /dev/null @@ -1,8 +0,0 @@ -$header - - - - - - - - - - - - - diff --git a/templates/Classic/customer/aps/footer.tpl b/templates/Classic/customer/aps/footer.tpl deleted file mode 100644 index 35ee6c15..00000000 --- a/templates/Classic/customer/aps/footer.tpl +++ /dev/null @@ -1 +0,0 @@ -$footer diff --git a/templates/Classic/customer/aps/header.tpl b/templates/Classic/customer/aps/header.tpl deleted file mode 100644 index 6af88b30..00000000 --- a/templates/Classic/customer/aps/header.tpl +++ /dev/null @@ -1 +0,0 @@ -$header diff --git a/templates/Classic/customer/aps/infobox.tpl b/templates/Classic/customer/aps/infobox.tpl deleted file mode 100644 index e8db19bf..00000000 --- a/templates/Classic/customer/aps/infobox.tpl +++ /dev/null @@ -1,7 +0,0 @@ -
 {$lng['update']['update']}
-
diff --git a/templates/Classic/assets/css/main.css b/templates/Classic/assets/css/main.css deleted file mode 100644 index 7390cbd8..00000000 --- a/templates/Classic/assets/css/main.css +++ /dev/null @@ -1,492 +0,0 @@ -body { - color : #000000; - font-family : Verdana, Arial, Helvetica, sans-serif; - font-size : 12px; -} - -.header { - background-image : url( '../img/header_r.gif' ); - background-repeat : repeat-x; -} - -.footer { - text-align : center; - border-color : #EBECF5; - border-style : solid; - border-width : 1px; - border-right : none; - border-left : none; - background : url('../img/footer.gif') repeat-y #FFFFFF; -} - -a,a:visited,a:active { - color : #000000; - text-decoration : underline; -} - -a:hover { - color : #F89826; - text-decoration : none; -} - -input { - color : black; - text-decoration : none; - font-family : Verdana, Arial, Helvetica, sans-serif; - font-size : 12px; - font-weight : bold; - border : 1px solid #ABC9E8; - background-color : #C6DEFF; -} - -input.text { - color : black; - text-decoration : none; - font-family : Verdana, Arial, Helvetica, sans-serif; - font-size : 12px; - font-weight : bold; - border : 1px solid #ABC9E8; - background-color : #C6DEFF; - width : 95%; -} - -input.textul { - color : black; - text-decoration : none; - font-family : Verdana, Arial, Helvetica, sans-serif; - font-size : 12px; - font-weight : bold; - border : 1px solid #ABC9E8; - background-color : #C6DEFF; - width : 55%; -} - -select,textarea { - color : black; - text-decoration : none; - font-family : Verdana, Arial, Helvetica, sans-serif; - font-size : 12px; - font-weight : bold; - border : 1px solid #B7B7B7; - background-color : #C6DEFF; -} - -input.bottom { - color : black; - text-decoration : none; - font-family : Verdana, Arial, Helvetica, sans-serif; - font-size : 12px; - font-weight : bold; - border : 1px solid #000000; - background-color : #C6DEFF; -} - -ul { - list-style : none; - padding : 0; - margin : 0; -} - -.title { - background-color : #ABC9E8; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; - border-top : none; - text-align : left; -} - -.line_shadow { - background-image : url( '../img/shadow.gif' ); - background-repeat : repeat-y; - background-position : top left; -} - -.section { - height : 25px; - background-image : url( '../img/section.gif' ); -} - -.subsection { - padding-top : 8px; - background-image : url( '../img/subsection.gif' ); -} - -.endsection { - height : 10px; - background-image : url( '../img/endsection.gif' ); - background-position : bottom; -} - -.maintable { - width : 90%; -} - -.maintable_60 { - width : 60%; -} - -.maintable_40 { - width : 40%; -} - -.maintitle { - width : 90%; - background-color : #ABC9E8; - border-color : #000000; - border-style : solid; - border-width : 1px; - text-align : left; - font-size : 1.3em; -} - -.main_field_name { - width : 50%; - background-color : #EBECF5; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; - text-align : left; -} - -.main_field_confirm { - width : 84%; - background-color : #EBECF5; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; - text-align : right; -} - -.field_name { - background-color : #EBECF5; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; - text-align : left; - border-top : none; - border-left : none; -} - -.field_name_foggy { /*nomecampo*/ - color : #555; - text-decoration : line-through; - background-color : #EBECF5; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; - text-align : left; - border-top : none; - border-left : none; -} - -.field_name_red { /*nomecampo*/ - background-color : #FFA0A0; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; - text-align : left; - border-top : none; - border-left : none; -} - -.field_name_nobordersmall { - background-color : #EBECF5; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; - text-align : left; - border-top : none; - border-bottom : none; -} - -.field_name_center { - background-color : #EBECF5; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; - text-align : center; - border-top : none; -} - -.field_name_center_noborder { - height : 30px; - background-color : #EBECF5; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; - text-align : center; - border-top : none; - border-right : none; -} - -.field_name_border_left { - background-color : #EBECF5; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; - text-align : left; - border-top : none; -} - -.field_name_border_left_foggy { /*nomecampo_bordosx*/ - color : #555; - text-decoration : line-through; - background-color : #EBECF5; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; - text-align : left; - border-top : none; -} - -.field_name_border_left_red { /*nomecampo_bordosx*/ - background-color : #FFA0A0; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; - text-align : left; - border-top : none; -} - -.field_name_search { - background-color : #EBECF5; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; - border-top : none; - border-left : none; - text-align : right; -} - -.main_field_display_red { /*install_campodisplay*/ - width : 6%; - background-color : #FFA0A0; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; -} - -.main_field_display { - width : 50%; - background-color : #C6DEFF; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; -} - -.main_field_display_small { - width : 25%; - background-color : #C6DEFF; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; -} - -.field_display { - background-color : #C6DEFF; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; - border-top : none; - border-left : none; -} - -.field_display_search { - background-color : #C6DEFF; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; - border-top : none; - border-left : none; - text-align : right; -} - -.field_display_border_left { - background-color : #C6DEFF; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; - border-top : none; -} - -.field_display_nobordersmall { - background-color : #C6DEFF; - border-color : #B7B7B7; - border-style : solid; - border-width : 1px; - border-top : none; - border-left : none; - border-bottom : none; -} - -select.dropdown_noborder { - color : black; - text-decoration : none; - font-family : Verdana, Arial, Helvetica, sans-serif; - font-size : 12px; - font-weight : bold; - border : 0px solid #B7B7B7; - background-color : #C6DEFF; -} - -textarea.textarea_noborder { - color : black; - text-decoration : none; - font-family : Verdana, Arial, Helvetica, sans-serif; - font-size : 12px; - font-weight : bold; - border : 0px solid #B7B7B7; - background-color : #C6DEFF; -} - -textarea.textarea_border { - width : 95%; - color : black; - text-decoration : none; - font-family : Verdana, Arial, Helvetica, sans-serif; - font-size : 12px; - font-weight : bold; - border : 1px solid #B7B7B7; - background-color : #C6DEFF; -} - -.maintitle_search_left { - background-color : #ABC9E8; - border-color : #000000; - border-style : solid; - border-width : 1px; - border-right-width : 0px; - text-align : left; - font-size : 1.3em; -} - -.maintitle_search_right { - background-color : #ABC9E8; - border-color : #000000; - border-style : solid; - border-width : 1px; - border-left-width : 0px; - text-align : right; -} - - -.maintitle_apply_left { - background-color : #ABC9E8; - border-color : #000000; - border-style : solid; - border-width : 1px; - text-align : left; -} - -.maintitle_apply_right { - background-color : #ABC9E8; - border-color : #000000; - border-style : solid; - border-width : 1px; - text-align : right; -} - -.ticket_high { - color : #ff0000; - font-weight : bold; -} - -.ticket_normal { - color : #ff9a38; - font-weight : bold; -} - -.ticket_low { - color : #5bc949; - font-weight : bold; -} - -TR { - background-color : #EBECF5; -} - -TR.RowOverSelected { - background-color : #FFFFFF; -} - -/* ADDED WITH APS INSTALLER */ - -.dataerror -{ - font-weight: bold; - color: #DD2222; - margin: 15px; - padding: 20px 20px 20px 60px; - background-color: #f1baba; - border: 1px solid #ce1d1d; - background-image: url('../img/error.png'); - background-repeat: no-repeat; - background-position: 15px 50%; -} - -.fielderror -{ - font-weight: bold; - color: #DD2222; - background-color: #f1baba; - border: 1px solid #DD2222; - padding: 8px; - margin: 8px 0 8px 0; -} - -.pageitem -{ - padding: 6px; - border: 1px solid #666666; - margin-right: 3px; - background-color: #C6DEFF; -} - -.update_progess -{ - padding: 2em; - text-align: left; -} - -.preconfig -{ - text-align: left; - margin-top: 20px; - margin-bottom: 5px; - margin-right: 15px; - margin-left: 15px; -} - -.preconfigitem -{ - padding: 0.15em; - border-bottom: 1px solid #cccccc; -} - -.preconfdesc -{ - display: block; - margin-bottom: 0.5em; - font-size: 120%; -} - -.strikethrough { - text-decoration: line-through; -} - - -table.maintable th.field_display .header { - background-color: #000000; -} - -.headerSortUp { - background-image: url(../img/asc.gif); - background-position: right bottom; - background-repeat: no-repeat; -} -.headerSortDown { - background-image: url(../img/desc.gif); - background-position: right top; - background-repeat: no-repeat; -} diff --git a/templates/Classic/assets/img/ball.gif b/templates/Classic/assets/img/ball.gif deleted file mode 100644 index 2a681e4f..00000000 Binary files a/templates/Classic/assets/img/ball.gif and /dev/null differ diff --git a/templates/Classic/assets/img/changelanguage.gif b/templates/Classic/assets/img/changelanguage.gif deleted file mode 100644 index dc6071b5..00000000 Binary files a/templates/Classic/assets/img/changelanguage.gif and /dev/null differ diff --git a/templates/Classic/assets/img/changetheme.png b/templates/Classic/assets/img/changetheme.png deleted file mode 100644 index 806d4edc..00000000 Binary files a/templates/Classic/assets/img/changetheme.png and /dev/null differ diff --git a/templates/Classic/assets/img/default.png b/templates/Classic/assets/img/default.png deleted file mode 100644 index a6848e09..00000000 Binary files a/templates/Classic/assets/img/default.png and /dev/null differ diff --git a/templates/Classic/assets/img/endsection.gif b/templates/Classic/assets/img/endsection.gif deleted file mode 100644 index 5e26ce7c..00000000 Binary files a/templates/Classic/assets/img/endsection.gif and /dev/null differ diff --git a/templates/Classic/assets/img/error.gif b/templates/Classic/assets/img/error.gif deleted file mode 100644 index 694a789d..00000000 Binary files a/templates/Classic/assets/img/error.gif and /dev/null differ diff --git a/templates/Classic/assets/img/error.png b/templates/Classic/assets/img/error.png deleted file mode 100644 index 164cd032..00000000 Binary files a/templates/Classic/assets/img/error.png and /dev/null differ diff --git a/templates/Classic/assets/img/favicon.ico b/templates/Classic/assets/img/favicon.ico deleted file mode 100644 index 84b71747..00000000 Binary files a/templates/Classic/assets/img/favicon.ico and /dev/null differ diff --git a/templates/Classic/assets/img/footer.gif b/templates/Classic/assets/img/footer.gif deleted file mode 100644 index ab1a51a2..00000000 Binary files a/templates/Classic/assets/img/footer.gif and /dev/null differ diff --git a/templates/Classic/assets/img/header_r.gif b/templates/Classic/assets/img/header_r.gif deleted file mode 100644 index 4a8e0213..00000000 Binary files a/templates/Classic/assets/img/header_r.gif and /dev/null differ diff --git a/templates/Classic/assets/img/info.png b/templates/Classic/assets/img/info.png deleted file mode 100644 index 83323f52..00000000 Binary files a/templates/Classic/assets/img/info.png and /dev/null differ diff --git a/templates/Classic/assets/img/login.gif b/templates/Classic/assets/img/login.gif deleted file mode 100644 index ef576850..00000000 Binary files a/templates/Classic/assets/img/login.gif and /dev/null differ diff --git a/templates/Classic/assets/img/logininternal.gif b/templates/Classic/assets/img/logininternal.gif deleted file mode 100644 index 7a64fb05..00000000 Binary files a/templates/Classic/assets/img/logininternal.gif and /dev/null differ diff --git a/templates/Classic/assets/img/logo.png b/templates/Classic/assets/img/logo.png deleted file mode 100644 index 9d426a2b..00000000 Binary files a/templates/Classic/assets/img/logo.png and /dev/null differ diff --git a/templates/Classic/assets/img/order_asc.gif b/templates/Classic/assets/img/order_asc.gif deleted file mode 100644 index 470e9789..00000000 Binary files a/templates/Classic/assets/img/order_asc.gif and /dev/null differ diff --git a/templates/Classic/assets/img/order_desc.gif b/templates/Classic/assets/img/order_desc.gif deleted file mode 100644 index a2d17da8..00000000 Binary files a/templates/Classic/assets/img/order_desc.gif and /dev/null differ diff --git a/templates/Classic/assets/img/section.gif b/templates/Classic/assets/img/section.gif deleted file mode 100644 index bd67eade..00000000 Binary files a/templates/Classic/assets/img/section.gif and /dev/null differ diff --git a/templates/Classic/assets/img/shadow.gif b/templates/Classic/assets/img/shadow.gif deleted file mode 100644 index bc64dc12..00000000 Binary files a/templates/Classic/assets/img/shadow.gif and /dev/null differ diff --git a/templates/Classic/assets/img/subsection.gif b/templates/Classic/assets/img/subsection.gif deleted file mode 100644 index d2b5bf8e..00000000 Binary files a/templates/Classic/assets/img/subsection.gif and /dev/null differ diff --git a/templates/Classic/assets/img/title.gif b/templates/Classic/assets/img/title.gif deleted file mode 100644 index c686057a..00000000 Binary files a/templates/Classic/assets/img/title.gif and /dev/null differ diff --git a/templates/Classic/assets/img/traffic_blue.gif b/templates/Classic/assets/img/traffic_blue.gif deleted file mode 100644 index 8f817faa..00000000 Binary files a/templates/Classic/assets/img/traffic_blue.gif and /dev/null differ diff --git a/templates/Classic/assets/img/traffic_green.gif b/templates/Classic/assets/img/traffic_green.gif deleted file mode 100644 index 93e9ebfa..00000000 Binary files a/templates/Classic/assets/img/traffic_green.gif and /dev/null differ diff --git a/templates/Classic/assets/img/traffic_red.gif b/templates/Classic/assets/img/traffic_red.gif deleted file mode 100644 index 7a5b5c48..00000000 Binary files a/templates/Classic/assets/img/traffic_red.gif and /dev/null differ diff --git a/templates/Classic/assets/img/traffic_yellow.gif b/templates/Classic/assets/img/traffic_yellow.gif deleted file mode 100644 index 2f2b3111..00000000 Binary files a/templates/Classic/assets/img/traffic_yellow.gif and /dev/null differ diff --git a/templates/Classic/assets/js/main.js b/templates/Classic/assets/js/main.js deleted file mode 100644 index 24bdf9ef..00000000 --- a/templates/Classic/assets/js/main.js +++ /dev/null @@ -1,25 +0,0 @@ -$(document).ready(function() { - // make rel="external" links open in a new window - $("a[rel='external']").attr('target', '_blank'); - - // set focus on username-field if on loginpage - if ($(".loginpage").length != 0) { - $("#loginname").focus(); - } - - // Auto-select next field in configfile - wizard - $('#config_distribution').change(function (){ - window.location.href=window.location.href + '&distribution=' + this.options[ this.selectedIndex ].value; - }); - $('#config_service').change(function (){ - window.location.href=window.location.href + '&service=' + this.options[ this.selectedIndex ].value; - }); - $('#config_daemon').change(function (){ - window.location.href=window.location.href + '&daemon=' + this.options[ this.selectedIndex ].value; - }); - - // Back-button - $('#yesnobutton').click(function() { - history.back(); - }); -}); \ No newline at end of file diff --git a/templates/Classic/customer/aps/askyesno.tpl b/templates/Classic/customer/aps/askyesno.tpl deleted file mode 100644 index e0778dc5..00000000 --- a/templates/Classic/customer/aps/askyesno.tpl +++ /dev/null @@ -1,23 +0,0 @@ - - - - - -
- $Message -
- - - - - $Ids -
-
-
- - - -
-
-
-
diff --git a/templates/Classic/customer/aps/data.tpl b/templates/Classic/customer/aps/data.tpl deleted file mode 100644 index 06e76872..00000000 --- a/templates/Classic/customer/aps/data.tpl +++ /dev/null @@ -1,9 +0,0 @@ - -
$Groupname
$Fieldname$Fieldvalue
- - - - -
$Message
-
diff --git a/templates/Classic/customer/aps/installer.tpl b/templates/Classic/customer/aps/installer.tpl deleted file mode 100644 index 102cf948..00000000 --- a/templates/Classic/customer/aps/installer.tpl +++ /dev/null @@ -1,27 +0,0 @@ -
- - - - - - - - - - - - - - - $Data - - - -
 {$Xml->name}
{$lng['aps']['install_wizard']} - -
{$lng['aps']['wizard_error']}
-
-
{$Xml->name} Icon
- -
-
diff --git a/templates/Classic/customer/aps/package.tpl b/templates/Classic/customer/aps/package.tpl deleted file mode 100644 index b4affbdb..00000000 --- a/templates/Classic/customer/aps/package.tpl +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - $Data - - - -
 {$Xml->name}
$Summary{$Xml->name} Icon
{$lng['aps']['data']}
- -
- - - - - -
-
- -
- - - - -
-
- -
- - - - - -
-
- - {$db_info} - - -
- - - - - -
-
-
-
diff --git a/templates/Classic/customer/aps/package_status.tpl b/templates/Classic/customer/aps/package_status.tpl deleted file mode 100644 index 1513187e..00000000 --- a/templates/Classic/customer/aps/package_status.tpl +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - $Data - - - -
 {$Xml->name}
$Summary{$Xml->name} Icon
{$lng['aps']['data']}
- -
- - - - - -
-
- -
- - - - - -
-
- -
- - - - - -
-
- - {$lng['aps']['waitfortask']} - -
-
diff --git a/templates/Classic/customer/aps/search.tpl b/templates/Classic/customer/aps/search.tpl deleted file mode 100644 index d81c0d1a..00000000 --- a/templates/Classic/customer/aps/search.tpl +++ /dev/null @@ -1,18 +0,0 @@ -
- - - - - - - - - - - - - - -
 {$lng['aps']['search']}
{$lng['aps']['search_description']}
-
-
diff --git a/templates/Classic/customer/autoresponder/autoresponder.tpl b/templates/Classic/customer/autoresponder/autoresponder.tpl deleted file mode 100644 index 4c7ea1e8..00000000 --- a/templates/Classic/customer/autoresponder/autoresponder.tpl +++ /dev/null @@ -1,22 +0,0 @@ -$header - - - - - - - - - - - - $autoresponder - - - - - -
 {$lng['menue']['email']['autoresponder']}
{$lng['emails']['emailaddress']}{$lng['autoresponder']['active']}{$lng['autoresponder']['startenddate']}  
{$lng['autoresponder']['autoresponder_add']}
-
-
-$footer diff --git a/templates/Classic/customer/autoresponder/autoresponder_add.tpl b/templates/Classic/customer/autoresponder/autoresponder_add.tpl deleted file mode 100644 index 1571fe30..00000000 --- a/templates/Classic/customer/autoresponder/autoresponder_add.tpl +++ /dev/null @@ -1,16 +0,0 @@ -$header -
- - - - - - - - - {$autoresponder_add_form} -
{$title} {$title}
-
-
-
-$footer diff --git a/templates/Classic/customer/autoresponder/autoresponder_autoresponder.tpl b/templates/Classic/customer/autoresponder/autoresponder_autoresponder.tpl deleted file mode 100644 index c2378aff..00000000 --- a/templates/Classic/customer/autoresponder/autoresponder_autoresponder.tpl +++ /dev/null @@ -1,7 +0,0 @@ - - {$row['email']} - {$lng['panel']['yes']}{$lng['panel']['no']} - $activated_date - {$lng['panel']['edit']} - {$lng['panel']['delete']} - diff --git a/templates/Classic/customer/autoresponder/autoresponder_edit.tpl b/templates/Classic/customer/autoresponder/autoresponder_edit.tpl deleted file mode 100644 index f9c37d9e..00000000 --- a/templates/Classic/customer/autoresponder/autoresponder_edit.tpl +++ /dev/null @@ -1,17 +0,0 @@ -$header -
- - - - - - - - - - {$autoresponder_edit_form} -
{$title} {$title}
-
-
-
-$footer diff --git a/templates/Classic/customer/domains/domainlist.tpl b/templates/Classic/customer/domains/domainlist.tpl deleted file mode 100644 index d788a8a6..00000000 --- a/templates/Classic/customer/domains/domainlist.tpl +++ /dev/null @@ -1,35 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - $domains - - - - - - - - - - -
 {$lng['domains']['domainsettings']} ({$domains_count}){$searchcode}
{$lng['domains']['subdomain_add']}
{$lng['domains']['domainname']}  {$arrowcode['d.domain']}{$lng['panel']['path']}  {$arrowcode['d.documentroot']}
{$pagingcode}
{$lng['domains']['subdomain_add']}
-
-
-
-$footer diff --git a/templates/Classic/customer/domains/domains.tpl b/templates/Classic/customer/domains/domains.tpl deleted file mode 100644 index b94fef13..00000000 --- a/templates/Classic/customer/domains/domains.tpl +++ /dev/null @@ -1,12 +0,0 @@ -$header - - - - - - - -
 {$lng['menue']['domains']['domains']}
{$lng['domains']['description']}
-
-
-$footer diff --git a/templates/Classic/customer/domains/domains_add.tpl b/templates/Classic/customer/domains/domains_add.tpl deleted file mode 100644 index 32f9b13d..00000000 --- a/templates/Classic/customer/domains/domains_add.tpl +++ /dev/null @@ -1,16 +0,0 @@ -$header -
- - - - - - - - - {$subdomain_add_form} -
$title {$title}
-
-
-
-$footer diff --git a/templates/Classic/customer/domains/domains_delimiter.tpl b/templates/Classic/customer/domains/domains_delimiter.tpl deleted file mode 100644 index 80eac269..00000000 --- a/templates/Classic/customer/domains/domains_delimiter.tpl +++ /dev/null @@ -1,3 +0,0 @@ - -     {$row['domain']} [{$lng['domains']['statstics']}] - \ No newline at end of file diff --git a/templates/Classic/customer/domains/domains_domain.tpl b/templates/Classic/customer/domains/domains_domain.tpl deleted file mode 100644 index d8d54ba3..00000000 --- a/templates/Classic/customer/domains/domains_domain.tpl +++ /dev/null @@ -1,6 +0,0 @@ - - {$row['domain']} - {$row['documentroot']}{$lng['domains']['aliasdomain']} {$row['aliasdomain']} - {$lng['panel']['edit']} - {$lng['panel']['delete']}{$lng['domains']['isassigneddomain']}{$lng['domains']['hasaliasdomains']} - diff --git a/templates/Classic/customer/domains/domains_edit.tpl b/templates/Classic/customer/domains/domains_edit.tpl deleted file mode 100644 index d7506a1b..00000000 --- a/templates/Classic/customer/domains/domains_edit.tpl +++ /dev/null @@ -1,18 +0,0 @@ -$header -
- - - - - - - - - - {$subdomain_edit_form} -
$title {$title}
-
-
-
-$footer - diff --git a/templates/Classic/customer/email/account_add.tpl b/templates/Classic/customer/email/account_add.tpl deleted file mode 100644 index ade18920..00000000 --- a/templates/Classic/customer/email/account_add.tpl +++ /dev/null @@ -1,17 +0,0 @@ -$header -
- - - - - - - - - - {$account_add_form} -
$title {$title}
-
-
-
-$footer diff --git a/templates/Classic/customer/email/account_changepw.tpl b/templates/Classic/customer/email/account_changepw.tpl deleted file mode 100644 index 6ee6ddf0..00000000 --- a/templates/Classic/customer/email/account_changepw.tpl +++ /dev/null @@ -1,17 +0,0 @@ -$header -
- - - - - - - - - - {$account_changepw_form} -
{$title} {$title}
-
-
-
-$footer diff --git a/templates/Classic/customer/email/account_changequota.tpl b/templates/Classic/customer/email/account_changequota.tpl deleted file mode 100644 index bc143ab4..00000000 --- a/templates/Classic/customer/email/account_changequota.tpl +++ /dev/null @@ -1,17 +0,0 @@ -$header -
- - - - - - - - - - {$quota_edit} -
{$title} {$title}
-
-
-
-$footer diff --git a/templates/Classic/customer/email/email.tpl b/templates/Classic/customer/email/email.tpl deleted file mode 100644 index 48c4cdc9..00000000 --- a/templates/Classic/customer/email/email.tpl +++ /dev/null @@ -1,12 +0,0 @@ -$header - - - - - - - -
 {$lng['menue']['email']['email']}
{$lng['emails']['description']}
-
-
-$footer diff --git a/templates/Classic/customer/email/emails.tpl b/templates/Classic/customer/email/emails.tpl deleted file mode 100644 index fd838e52..00000000 --- a/templates/Classic/customer/email/emails.tpl +++ /dev/null @@ -1,38 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - - - - $accounts - - - - - - - - - - -
 {$lng['menue']['email']['emails']} ({$emailscount}){$searchcode}
{$lng['emails']['emails_add']}
{$lng['emails']['emailaddress']}  {$arrowcode['m.email_full']}{$lng['emails']['forwarders']}  {$arrowcode['m.destination']}{$lng['emails']['account']}{$lng['emails']['catchall']}{$lng['emails']['quota']}
{$pagingcode}
{$lng['emails']['emails_add']}
-
-
-
-$footer diff --git a/templates/Classic/customer/email/emails_add.tpl b/templates/Classic/customer/email/emails_add.tpl deleted file mode 100644 index 2b5389d0..00000000 --- a/templates/Classic/customer/email/emails_add.tpl +++ /dev/null @@ -1,16 +0,0 @@ -$header -
- - - - - - - - - {$email_add_form} -
$title {$title}
-
-
-
-$footer diff --git a/templates/Classic/customer/email/emails_domain.tpl b/templates/Classic/customer/email/emails_domain.tpl deleted file mode 100644 index 3c34f6a4..00000000 --- a/templates/Classic/customer/email/emails_domain.tpl +++ /dev/null @@ -1,3 +0,0 @@ - -     {$domainname} - \ No newline at end of file diff --git a/templates/Classic/customer/email/emails_edit.tpl b/templates/Classic/customer/email/emails_edit.tpl deleted file mode 100644 index f01eb18f..00000000 --- a/templates/Classic/customer/email/emails_edit.tpl +++ /dev/null @@ -1,15 +0,0 @@ -$header -
- - - - - {$email_edit_form} - - - -
$title {$title}
{$lng['emails']['back_to_overview']}
-
-
-
-$footer diff --git a/templates/Classic/customer/email/emails_edit_forwarder.tpl b/templates/Classic/customer/email/emails_edit_forwarder.tpl deleted file mode 100644 index 88467962..00000000 --- a/templates/Classic/customer/email/emails_edit_forwarder.tpl +++ /dev/null @@ -1,2 +0,0 @@ -$destination [{$lng['panel']['delete']}] -
\ No newline at end of file diff --git a/templates/Classic/customer/email/emails_email.tpl b/templates/Classic/customer/email/emails_email.tpl deleted file mode 100644 index 78c10c1d..00000000 --- a/templates/Classic/customer/email/emails_email.tpl +++ /dev/null @@ -1,9 +0,0 @@ - - {$row['email_full']} -  {$row['destination']} - {$lng['panel']['yes']}{$lng['panel']['no']} - {$lng['panel']['yes']}{$lng['panel']['no']} - {$lng['emails']['noquota']}{$row['quota']} MB - {$lng['panel']['edit']} - {$lng['panel']['delete']} - diff --git a/templates/Classic/customer/email/forwarder_add.tpl b/templates/Classic/customer/email/forwarder_add.tpl deleted file mode 100644 index 5f1a501b..00000000 --- a/templates/Classic/customer/email/forwarder_add.tpl +++ /dev/null @@ -1,20 +0,0 @@ -$header -
- - - - - - - - - - {$forwarder_add_form} -
{$title} {$title}
-
-
-
- -$footer diff --git a/templates/Classic/customer/extras/backup.tpl b/templates/Classic/customer/extras/backup.tpl deleted file mode 100644 index 2e4cf1c4..00000000 --- a/templates/Classic/customer/extras/backup.tpl +++ /dev/null @@ -1,17 +0,0 @@ -$header -
- - - - - - - - - - {$backup_form} -
 {$lng['backup']}
-
-
-
-$footer diff --git a/templates/Classic/customer/extras/extras.tpl b/templates/Classic/customer/extras/extras.tpl deleted file mode 100644 index 7f1480ca..00000000 --- a/templates/Classic/customer/extras/extras.tpl +++ /dev/null @@ -1,12 +0,0 @@ -$header - - - - - - - -
 {$lng['menue']['extras']['extras']}
{$lng['extras']['description']}
-
-
-$footer diff --git a/templates/Classic/customer/extras/htaccess.tpl b/templates/Classic/customer/extras/htaccess.tpl deleted file mode 100644 index 28f5f730..00000000 --- a/templates/Classic/customer/extras/htaccess.tpl +++ /dev/null @@ -1,32 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - $htaccess - - - - - - - - -
 {$lng['menue']['extras']['pathoptions']}{$searchcode}
{$lng['panel']['path']}  {$arrowcode['path']}{$lng['extras']['view_directory']}  {$arrowcode['options_indexes']}{$lng['extras']['error404path']}  {$arrowcode['error404path']}{$lng['extras']['error403path']}  {$arrowcode['error403path']}{$lng['extras']['error500path']}  {$arrowcode['error500path']}{$lng['extras']['execute_perl']}  {$arrowcode['options_cgi']}
{$pagingcode}
{$lng['extras']['pathoptions_add']}
-
-
-
-$footer diff --git a/templates/Classic/customer/extras/htaccess_add.tpl b/templates/Classic/customer/extras/htaccess_add.tpl deleted file mode 100644 index c27bf57a..00000000 --- a/templates/Classic/customer/extras/htaccess_add.tpl +++ /dev/null @@ -1,16 +0,0 @@ -$header -
- - - - - - - - - {$htaccess_add_form} -
{$title} {$title}
-
-
-
-$footer diff --git a/templates/Classic/customer/extras/htaccess_edit.tpl b/templates/Classic/customer/extras/htaccess_edit.tpl deleted file mode 100644 index 000315fe..00000000 --- a/templates/Classic/customer/extras/htaccess_edit.tpl +++ /dev/null @@ -1,17 +0,0 @@ -$header -
- - - - - - - - - - {$htaccess_edit_form} -
{$title} {$title}
-
-
-
-$footer diff --git a/templates/Classic/customer/extras/htaccess_htaccess.tpl b/templates/Classic/customer/extras/htaccess_htaccess.tpl deleted file mode 100644 index b407265f..00000000 --- a/templates/Classic/customer/extras/htaccess_htaccess.tpl +++ /dev/null @@ -1,10 +0,0 @@ - - {$row['path']} - {$row['options_indexes']} - {$row['error404path']} - {$row['error403path']} - {$row['error500path']} - {$row['options_cgi']} - {$lng['panel']['edit']} - {$lng['panel']['delete']} - diff --git a/templates/Classic/customer/extras/htpasswds.tpl b/templates/Classic/customer/extras/htpasswds.tpl deleted file mode 100644 index cf1c7cd1..00000000 --- a/templates/Classic/customer/extras/htpasswds.tpl +++ /dev/null @@ -1,28 +0,0 @@ -$header -
- - - - - - - - - - - - - $htpasswds - - - - - - - - -
 {$lng['menue']['extras']['directoryprotection']}{$searchcode}
{$lng['login']['username']}  {$arrowcode['username']}{$lng['panel']['path']}  {$arrowcode['path']}
{$pagingcode}
{$lng['extras']['directoryprotection_add']}
-
-
-
-$footer diff --git a/templates/Classic/customer/extras/htpasswds_add.tpl b/templates/Classic/customer/extras/htpasswds_add.tpl deleted file mode 100644 index 5439d198..00000000 --- a/templates/Classic/customer/extras/htpasswds_add.tpl +++ /dev/null @@ -1,16 +0,0 @@ -$header -
- - - - - - - - - {$htpasswd_add_form} -
{$title} {$title}
-
-
-
-$footer diff --git a/templates/Classic/customer/extras/htpasswds_edit.tpl b/templates/Classic/customer/extras/htpasswds_edit.tpl deleted file mode 100644 index eb904a8e..00000000 --- a/templates/Classic/customer/extras/htpasswds_edit.tpl +++ /dev/null @@ -1,17 +0,0 @@ -$header -
- - - - - - - - - - {$htpasswd_edit_form} -
{$title} {$title}
-
-
-
-$footer diff --git a/templates/Classic/customer/extras/htpasswds_htpasswd.tpl b/templates/Classic/customer/extras/htpasswds_htpasswd.tpl deleted file mode 100644 index f8850f71..00000000 --- a/templates/Classic/customer/extras/htpasswds_htpasswd.tpl +++ /dev/null @@ -1,6 +0,0 @@ - - {$row['username']} - {$row['path']} - {$lng['panel']['edit']} - {$lng['panel']['delete']} - diff --git a/templates/Classic/customer/ftp/accounts.tpl b/templates/Classic/customer/ftp/accounts.tpl deleted file mode 100644 index 6040f882..00000000 --- a/templates/Classic/customer/ftp/accounts.tpl +++ /dev/null @@ -1,36 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - - $accounts - - - - - - - - - - -
 {$lng['menue']['ftp']['accounts']} ({$ftps_count}){$searchcode}
{$lng['ftp']['account_add']}
{$lng['login']['username']}  {$arrowcode['username']}{$lng['panel']['path']}  {$arrowcode['homedir']}
{$pagingcode}
{$lng['ftp']['account_add']}
-
-
-
-$footer diff --git a/templates/Classic/customer/ftp/accounts_account.tpl b/templates/Classic/customer/ftp/accounts_account.tpl deleted file mode 100644 index a7bf3d49..00000000 --- a/templates/Classic/customer/ftp/accounts_account.tpl +++ /dev/null @@ -1,6 +0,0 @@ - - {$row['username']} - {$row['documentroot']} - {$lng['panel']['edit']} - {$lng['panel']['delete']} - diff --git a/templates/Classic/customer/ftp/accounts_add.tpl b/templates/Classic/customer/ftp/accounts_add.tpl deleted file mode 100644 index 301566aa..00000000 --- a/templates/Classic/customer/ftp/accounts_add.tpl +++ /dev/null @@ -1,16 +0,0 @@ -$header -
- - - - - - - - - {$ftp_add_form} -
 {$title}
-
-
-
-$footer diff --git a/templates/Classic/customer/ftp/accounts_edit.tpl b/templates/Classic/customer/ftp/accounts_edit.tpl deleted file mode 100644 index 974f6d88..00000000 --- a/templates/Classic/customer/ftp/accounts_edit.tpl +++ /dev/null @@ -1,17 +0,0 @@ -$header -
- - - - - - - - - - {$ftp_edit_form} -
 {$title}
-
-
-
-$footer diff --git a/templates/Classic/customer/ftp/ftp.tpl b/templates/Classic/customer/ftp/ftp.tpl deleted file mode 100644 index d1a6ceed..00000000 --- a/templates/Classic/customer/ftp/ftp.tpl +++ /dev/null @@ -1,12 +0,0 @@ -$header - - - - - - - -
 {$lng['menue']['ftp']['ftp']}
{$lng['ftp']['description']}
-
-
-$footer diff --git a/templates/Classic/customer/index/change_language.tpl b/templates/Classic/customer/index/change_language.tpl deleted file mode 100644 index dbdcf870..00000000 --- a/templates/Classic/customer/index/change_language.tpl +++ /dev/null @@ -1,23 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - -
 {$lng['menue']['main']['changelanguage']}
{$lng['login']['language']}
-
-
-
-$footer diff --git a/templates/Classic/customer/index/change_password.tpl b/templates/Classic/customer/index/change_password.tpl deleted file mode 100644 index 983e8487..00000000 --- a/templates/Classic/customer/index/change_password.tpl +++ /dev/null @@ -1,37 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 {$lng['menue']['main']['changepassword']}
{$lng['changepassword']['old_password']}:
{$lng['changepassword']['new_password']}:
{$lng['changepassword']['new_password_confirm']}:
{$lng['changepassword']['also_change_ftp']}
{$lng['changepassword']['also_change_webalizer']}
-
-
-
-$footer diff --git a/templates/Classic/customer/index/change_theme.tpl b/templates/Classic/customer/index/change_theme.tpl deleted file mode 100644 index 8cbe318b..00000000 --- a/templates/Classic/customer/index/change_theme.tpl +++ /dev/null @@ -1,24 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - -
 {$lng['menue']['main']['changetheme']}
{$lng['panel']['theme']}
-
-
-
-$footer - diff --git a/templates/Classic/customer/index/index.tpl b/templates/Classic/customer/index/index.tpl deleted file mode 100644 index 22cf0d55..00000000 --- a/templates/Classic/customer/index/index.tpl +++ /dev/null @@ -1,119 +0,0 @@ -$header - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 {$lng['index']['customerdetails']}
{$lng['customer']['customernumber']}:{$userinfo['customernumber']}
{$lng['customer']['company']}:{$userinfo['company']}
{$lng['customer']['name']}:{$userinfo['firstname']} {$userinfo['name']}
{$lng['customer']['street']}:{$userinfo['street']}
{$lng['customer']['zipcode']}/{$lng['customer']['city']}:{$userinfo['zipcode']} {$userinfo['city']}
{$lng['customer']['email']}:{$userinfo['email']}
 {$lng['index']['accountdetails']}
{$lng['login']['username']}:{$userinfo['loginname']}
{$lng['customer']['domains']}:$domains
{$lng['customer']['subdomains']} ({$lng['customer']['usedmax']}):{$userinfo['subdomains_used']}/{$userinfo['subdomains']}
{$lng['customer']['diskspace']} ({$lng['customer']['usedmax']}):{$userinfo['diskspace_used']}/{$userinfo['diskspace']}
{$lng['customer']['traffic']} ($month, {$lng['customer']['usedmax']}):{$userinfo['traffic_used']}/{$userinfo['traffic']}
{$lng['customer']['emails']} ({$lng['customer']['usedmax']}):{$userinfo['emails_used']}/{$userinfo['emails']}
{$lng['customer']['accounts']} ({$lng['customer']['usedmax']}):{$userinfo['email_accounts_used']}/{$userinfo['email_accounts']}
{$lng['customer']['forwarders']} ({$lng['customer']['usedmax']}):{$userinfo['email_forwarders_used']}/{$userinfo['email_forwarders']}
{$lng['customer']['email_quota']} ({$lng['panel']['megabyte']}, {$lng['customer']['usedmax']}):{$userinfo['email_quota_used']}/{$userinfo['email_quota']}
{$lng['customer']['autoresponder']} ({$lng['customer']['usedmax']}):{$userinfo['email_autoresponder_used']}/{$userinfo['email_autoresponder']}
{$lng['customer']['mysqls']} ({$lng['customer']['usedmax']}):{$userinfo['mysqls_used']}/{$userinfo['mysqls']}
{$lng['customer']['ftps']} ({$lng['customer']['usedmax']}):{$userinfo['ftps_used']}/{$userinfo['ftps']}
{$lng['aps']['numberofapspackages']} ({$lng['customer']['usedmax']}):{$userinfo['aps_packages_used']}/{$userinfo['aps_packages']}
{$lng['customer']['tickets']} ({$lng['customer']['usedmax']}):{$userinfo['tickets_used']}/{$userinfo['tickets']}
{$awaitingtickets_text}
-
-
-$footer diff --git a/templates/Classic/customer/mysql/mysql.tpl b/templates/Classic/customer/mysql/mysql.tpl deleted file mode 100644 index 262bbbad..00000000 --- a/templates/Classic/customer/mysql/mysql.tpl +++ /dev/null @@ -1,12 +0,0 @@ -$header - - - - - - - -
 {$lng['menue']['mysql']['mysql']}
{$lng['mysql']['description']}
-
-
-$footer diff --git a/templates/Classic/customer/mysql/mysqls.tpl b/templates/Classic/customer/mysql/mysqls.tpl deleted file mode 100644 index 57eef62b..00000000 --- a/templates/Classic/customer/mysql/mysqls.tpl +++ /dev/null @@ -1,37 +0,0 @@ -$header -
- - - - - - - - - - - - - - - - - - - - $mysqls - - - - - - - - - - -
 {$lng['menue']['mysql']['databases']} ({$mysqls_count}){$searchcode}
{$lng['mysql']['database_create']}
{$lng['mysql']['databasename']}  {$arrowcode['databasename']}{$lng['mysql']['databasedescription']}  {$arrowcode['description']}{$lng['mysql']['size']}{$lng['mysql']['mysql_server']}
{$pagingcode}
{$lng['mysql']['database_create']}
-
-
-
-$footer diff --git a/templates/Classic/customer/mysql/mysqls_add.tpl b/templates/Classic/customer/mysql/mysqls_add.tpl deleted file mode 100644 index 7c73310f..00000000 --- a/templates/Classic/customer/mysql/mysqls_add.tpl +++ /dev/null @@ -1,16 +0,0 @@ -$header -
- - - - - - - - - {$mysql_add_form} -
 {$title}
-
-
-
-$footer diff --git a/templates/Classic/customer/mysql/mysqls_database.tpl b/templates/Classic/customer/mysql/mysqls_database.tpl deleted file mode 100644 index 878fce58..00000000 --- a/templates/Classic/customer/mysql/mysqls_database.tpl +++ /dev/null @@ -1,12 +0,0 @@ - - {$row['databasename']} - {$row['description']} - {$row['size']} - {$sql_root[$row['dbserver']]['caption']} - - {$lng['panel']['edit']} - {$lng['panel']['delete']} - - {$lng['aps']['cannoteditordeleteapsdb']} - - diff --git a/templates/Classic/customer/mysql/mysqls_edit.tpl b/templates/Classic/customer/mysql/mysqls_edit.tpl deleted file mode 100644 index 1c1b63d4..00000000 --- a/templates/Classic/customer/mysql/mysqls_edit.tpl +++ /dev/null @@ -1,17 +0,0 @@ -$header -
- - - - - - - - - - {$mysql_edit_form} -
 {$title}
-
-
-
-$footer diff --git a/templates/Classic/customer/tickets/ticket.tpl b/templates/Classic/customer/tickets/ticket.tpl deleted file mode 100644 index c60d6a80..00000000 --- a/templates/Classic/customer/tickets/ticket.tpl +++ /dev/null @@ -1,12 +0,0 @@ -$header - - - - - - - -
 {$lng['menue']['ticket']['ticket']}
{$lng['ticket']['description']}
-
-
-$footer diff --git a/templates/Classic/customer/tickets/tickets.tpl b/templates/Classic/customer/tickets/tickets.tpl deleted file mode 100644 index ba937b30..00000000 --- a/templates/Classic/customer/tickets/tickets.tpl +++ /dev/null @@ -1,58 +0,0 @@ -$header -
- - - - - - - - - - - -
 {$lng['ticket']['supportstatus']} 
- - {$lng['ticket']['supportavailable']} - - - {$lng['ticket']['supportnotavailable']} - -
-
-
- - - - - - - - - - - - - - - - - - - - $tickets - - - - - - - - - - -
 {$lng['menue']['ticket']['ticket']}{$searchcode}
{$lng['ticket']['ticket_new']}
{$lng['ticket']['lastchange']}  {$arrowcode['lastchange']}{$lng['ticket']['ticket_answers']}  {$arrowcode['ticket_answers']}{$lng['ticket']['subject']}  {$arrowcode['subject']}{$lng['ticket']['status']}  {$arrowcode['status']}{$lng['ticket']['lastreplier']}  {$arrowcode['lastreplier']}{$lng['ticket']['priority']}  {$arrowcode['priority']}
{$pagingcode}
{$lng['ticket']['ticket_new']}
-
-
-
-$footer diff --git a/templates/Classic/customer/tickets/tickets_new.tpl b/templates/Classic/customer/tickets/tickets_new.tpl deleted file mode 100644 index ea9f5e8f..00000000 --- a/templates/Classic/customer/tickets/tickets_new.tpl +++ /dev/null @@ -1,16 +0,0 @@ -$header -
- - - - - - - - - {$ticket_add_form} -
 {$title}
-
-
-
-$footer diff --git a/templates/Classic/customer/tickets/tickets_reply.tpl b/templates/Classic/customer/tickets/tickets_reply.tpl deleted file mode 100644 index 0e54dc48..00000000 --- a/templates/Classic/customer/tickets/tickets_reply.tpl +++ /dev/null @@ -1,32 +0,0 @@ -$header -
- - - - - - - $ticket_replies - - - - - - - {$ticket_reply_form} -
 {$title}
-
- - - - - - - - -
 {$lng['ticket']['ticket_reopen']}
{$lng['ticket']['ticket_reopen']}
-
-
-
-
-$footer diff --git a/templates/Classic/customer/tickets/tickets_tickets.tpl b/templates/Classic/customer/tickets/tickets_tickets.tpl deleted file mode 100644 index d3033b12..00000000 --- a/templates/Classic/customer/tickets/tickets_tickets.tpl +++ /dev/null @@ -1,22 +0,0 @@ - - {$row['lastchange']} - {$row['ticket_answers']} - {$row['subject']} - {$row['status']} - {$row['lastreplier']} - {$row['priority']} - - - {$lng['ticket']['show']} - {$lng['ticket']['answer']} - - - - - {$lng['ticket']['close']} - - - {$lng['ticket']['reopen']} - - - diff --git a/templates/Classic/customer/tickets/tickets_tickets_list.tpl b/templates/Classic/customer/tickets/tickets_tickets_list.tpl deleted file mode 100644 index ec447c1f..00000000 --- a/templates/Classic/customer/tickets/tickets_tickets_list.tpl +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - -
  {$lastchange} von {$by}
{$subject}
{$message}
diff --git a/templates/Classic/customer/tickets/tickets_tickets_main.tpl b/templates/Classic/customer/tickets/tickets_tickets_main.tpl deleted file mode 100644 index b070f5ae..00000000 --- a/templates/Classic/customer/tickets/tickets_tickets_main.tpl +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - -
  {$dt} von {$by} ({$status})
{$subject}
{$message}
diff --git a/templates/Classic/customer/traffic/traffic.tpl b/templates/Classic/customer/traffic/traffic.tpl deleted file mode 100644 index 814079ec..00000000 --- a/templates/Classic/customer/traffic/traffic.tpl +++ /dev/null @@ -1,30 +0,0 @@ -$header - - - - - - - - - - - - - $traffic -
 {$lng['menue']['traffic']['traffic']}
- - - - - - - - - - - -
{$lng['traffic']['sumftp']} GB{$lng['traffic']['sumhttp']} GB{$lng['traffic']['summail']} GB
{$traffic_complete['ftp']}
{$traffic_complete['http']}
{$traffic_complete['mail']}
-
{$lng['traffic']['month']}{$lng['traffic']['distribution']}{$lng['customer']['traffic']}
-$footer - diff --git a/templates/Classic/customer/traffic/traffic_details.tpl b/templates/Classic/customer/traffic/traffic_details.tpl deleted file mode 100644 index 2da91279..00000000 --- a/templates/Classic/customer/traffic/traffic_details.tpl +++ /dev/null @@ -1,30 +0,0 @@ -$header - - - - - - - - - - - - - $traffic -
 {$lng['menue']['traffic']['traffic']} $show
- - - - - - - - - - - -
{$lng['traffic']['sumftp']} MB{$lng['traffic']['sumhttp']} MB{$lng['traffic']['summail']} MB
{$traffic_complete['ftp']}
{$traffic_complete['http']}
{$traffic_complete['mail']}
-
{$lng['traffic']['day']}{$lng['traffic']['distribution']}{$lng['traffic']['mb']}
-$footer - diff --git a/templates/Classic/customer/traffic/traffic_month.tpl b/templates/Classic/customer/traffic/traffic_month.tpl deleted file mode 100644 index ad79d97d..00000000 --- a/templates/Classic/customer/traffic/traffic_month.tpl +++ /dev/null @@ -1,5 +0,0 @@ - - {$traf['day']}.   -

- {$traf['byte']} - diff --git a/templates/Classic/customer/traffic/traffic_traffic.tpl b/templates/Classic/customer/traffic/traffic_traffic.tpl deleted file mode 100644 index 9a9ea606..00000000 --- a/templates/Classic/customer/traffic/traffic_traffic.tpl +++ /dev/null @@ -1,7 +0,0 @@ - - - {$traf['monthname']} - - {$traf['ftptext']}
{$traf['httptext']}
{$traf['mailtext']} - {$traf['byte']} - diff --git a/templates/Classic/footer.tpl b/templates/Classic/footer.tpl deleted file mode 100644 index c5a9491c..00000000 --- a/templates/Classic/footer.tpl +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - -
- - diff --git a/templates/Classic/formfields/bool.tpl b/templates/Classic/formfields/bool.tpl deleted file mode 100644 index 83ca3de4..00000000 --- a/templates/Classic/formfields/bool.tpl +++ /dev/null @@ -1,4 +0,0 @@ - - {$label} - checked="checked" /> - diff --git a/templates/Classic/formfields/hidden.tpl b/templates/Classic/formfields/hidden.tpl deleted file mode 100644 index e7807e69..00000000 --- a/templates/Classic/formfields/hidden.tpl +++ /dev/null @@ -1,4 +0,0 @@ - - {$label} - {$fielddata['value']} - diff --git a/templates/Classic/formfields/hiddenstring.tpl b/templates/Classic/formfields/hiddenstring.tpl deleted file mode 100644 index 972265e6..00000000 --- a/templates/Classic/formfields/hiddenstring.tpl +++ /dev/null @@ -1,4 +0,0 @@ - - {$label} - - \ No newline at end of file diff --git a/templates/Classic/formfields/label.tpl b/templates/Classic/formfields/label.tpl deleted file mode 100644 index 78f71e38..00000000 --- a/templates/Classic/formfields/label.tpl +++ /dev/null @@ -1,3 +0,0 @@ - - $label - diff --git a/templates/Classic/formfields/option.tpl b/templates/Classic/formfields/option.tpl deleted file mode 100644 index bd9bd96e..00000000 --- a/templates/Classic/formfields/option.tpl +++ /dev/null @@ -1,4 +0,0 @@ - - valign="top">{$label} - - diff --git a/templates/Classic/formfields/string.tpl b/templates/Classic/formfields/string.tpl deleted file mode 100644 index e60f9c90..00000000 --- a/templates/Classic/formfields/string.tpl +++ /dev/null @@ -1,4 +0,0 @@ - - {$label} - - diff --git a/templates/Classic/formfields/text.tpl b/templates/Classic/formfields/text.tpl deleted file mode 100644 index 9d69eb84..00000000 --- a/templates/Classic/formfields/text.tpl +++ /dev/null @@ -1,4 +0,0 @@ - - {$label} - - diff --git a/templates/Classic/header.tpl b/templates/Classic/header.tpl deleted file mode 100644 index bcae7232..00000000 --- a/templates/Classic/header.tpl +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - <if isset($userinfo['loginname']) && $userinfo['loginname'] != ''>{$userinfo['loginname']} - </if>Froxlor - - - - - - - - - -
 
- - - - - - - - diff --git a/templates/Classic/misc/form/table_row.tpl b/templates/Classic/misc/form/table_row.tpl deleted file mode 100644 index 6bd4bc52..00000000 --- a/templates/Classic/misc/form/table_row.tpl +++ /dev/null @@ -1,9 +0,0 @@ - - - - diff --git a/templates/Classic/misc/form/table_section.tpl b/templates/Classic/misc/form/table_section.tpl deleted file mode 100644 index a91444f2..00000000 --- a/templates/Classic/misc/form/table_section.tpl +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/templates/Classic/misc/htmlarrowcode.tpl b/templates/Classic/misc/htmlarrowcode.tpl deleted file mode 100644 index 2b32c4f6..00000000 --- a/templates/Classic/misc/htmlarrowcode.tpl +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/templates/Classic/misc/htmlsearchcode.tpl b/templates/Classic/misc/htmlsearchcode.tpl deleted file mode 100644 index b58952b4..00000000 --- a/templates/Classic/misc/htmlsearchcode.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{$lng['panel']['search']}:  -  -  - diff --git a/templates/Classic/misc/htmlsortcode.tpl b/templates/Classic/misc/htmlsortcode.tpl deleted file mode 100644 index e0f16838..00000000 --- a/templates/Classic/misc/htmlsortcode.tpl +++ /dev/null @@ -1,7 +0,0 @@ - -{$breakorws} -  diff --git a/templates/Classic/misc/question_yesno.tpl b/templates/Classic/misc/question_yesno.tpl deleted file mode 100644 index 6a5726af..00000000 --- a/templates/Classic/misc/question_yesno.tpl +++ /dev/null @@ -1,18 +0,0 @@ -$header - - - - $hiddenparams -
$navigation
  - - - -
-
diff --git a/templates/Classic/login/fpwd.tpl b/templates/Classic/login/fpwd.tpl deleted file mode 100644 index 7b5b2990..00000000 --- a/templates/Classic/login/fpwd.tpl +++ /dev/null @@ -1,44 +0,0 @@ -$header -
-
- - - - - - - - - - -
  {$lng['error']['error']}/{$lng['error']['info']}
$message
-
-
-
- - - - - - - - - - - - - - - - - - - - -
 Froxlor - {$lng['login']['presend']}
{$lng['login']['username']}:
{$lng['login']['email']}:
{$lng['login']['backtologin']}
-
-
-
-
-
-$footer diff --git a/templates/Classic/login/login.tpl b/templates/Classic/login/login.tpl deleted file mode 100644 index 73310f8f..00000000 --- a/templates/Classic/login/login.tpl +++ /dev/null @@ -1,52 +0,0 @@ -$header -
-
- - - - - - - - - -
  {$lng['error']['error']}/{$lng['error']['info']}
$message
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 Froxlor - Login
{$lng['login']['username']}:
{$lng['login']['password']}:
{$lng['login']['language']}:
{$lng['login']['forgotpwd']}
{$update_in_progress}
-
-
-
-
-$footer diff --git a/templates/Classic/misc/alreadyinstalledhint.tpl b/templates/Classic/misc/alreadyinstalledhint.tpl deleted file mode 100644 index 296d2d96..00000000 --- a/templates/Classic/misc/alreadyinstalledhint.tpl +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - Attention: Froxlor has not been configured yet! - - - - - -
-
    -
  • It seems that Froxlor has already been installed..
  • -
-
- - - - - - diff --git a/templates/Classic/misc/configurehint.tpl b/templates/Classic/misc/configurehint.tpl deleted file mode 100644 index 7bd6f1b9..00000000 --- a/templates/Classic/misc/configurehint.tpl +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - Attention: Froxlor has not been configured yet! - - - - - -
- -
- - - - - - diff --git a/templates/Classic/misc/error.tpl b/templates/Classic/misc/error.tpl deleted file mode 100644 index 259a438d..00000000 --- a/templates/Classic/misc/error.tpl +++ /dev/null @@ -1,17 +0,0 @@ -$header - - - - - - - - - - - - -
  {$lng['error']['error']}
$error
$link
-
-
-$footer diff --git a/templates/Classic/misc/form/input_text.tpl b/templates/Classic/misc/form/input_text.tpl deleted file mode 100644 index ed827ab2..00000000 --- a/templates/Classic/misc/form/input_text.tpl +++ /dev/null @@ -1 +0,0 @@ -{$ulfield} diff --git a/templates/Classic/misc/form/input_textarea.tpl b/templates/Classic/misc/form/input_textarea.tpl deleted file mode 100644 index fbcf9e8f..00000000 --- a/templates/Classic/misc/form/input_textarea.tpl +++ /dev/null @@ -1 +0,0 @@ - diff --git a/templates/Classic/misc/form/table_end.tpl b/templates/Classic/misc/form/table_end.tpl deleted file mode 100644 index a79d9bea..00000000 --- a/templates/Classic/misc/form/table_end.tpl +++ /dev/null @@ -1,5 +0,0 @@ -
- -
- {$label}{$mandatory}: - -
{$desc} -
-
{$data_field}
- {$title} {$title} - - -
- - - - - - - -
  {$lng['question']['question']}
$text 
- -
-
-$footer diff --git a/templates/Classic/misc/question_yesno_checkbox.tpl b/templates/Classic/misc/question_yesno_checkbox.tpl deleted file mode 100644 index d8c6dc3f..00000000 --- a/templates/Classic/misc/question_yesno_checkbox.tpl +++ /dev/null @@ -1,21 +0,0 @@ -$header -
- - - $hiddenparams - - - - - - - - - - - -
  {$lng['question']['question']}
$text$checkbox
 
-
-
-
-$footer diff --git a/templates/Classic/misc/success.tpl b/templates/Classic/misc/success.tpl deleted file mode 100644 index 14948d1b..00000000 --- a/templates/Classic/misc/success.tpl +++ /dev/null @@ -1,13 +0,0 @@ -$header - - - - - - - - -
  {$lng['success']['success']}
$success_message
{$lng['success']['clickheretocontinue']}
-
-
-$footer diff --git a/templates/Classic/navigation_element.tpl b/templates/Classic/navigation_element.tpl deleted file mode 100644 index 3ae45685..00000000 --- a/templates/Classic/navigation_element.tpl +++ /dev/null @@ -1,12 +0,0 @@ -
- - - - - - - - - - -
   $completeLink
$navigation_links
diff --git a/templates/Classic/navigation_link.tpl b/templates/Classic/navigation_link.tpl deleted file mode 100644 index 822ee88e..00000000 --- a/templates/Classic/navigation_link.tpl +++ /dev/null @@ -1,2 +0,0 @@ -   {$completeLink} -