summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-11-04 09:59:55 +0000
committeralecpl <alec@alec.pl>2010-11-04 09:59:55 +0000
commit83ba22c77b8790d8cbea8c684c4e1a0c431b83d6 (patch)
treed79c208d57a1f4991b8db2fa887333b6cab7644f
parentc7a815d1a4bc6020c924d590ea4157f4d2ec2963 (diff)
- Unify template files naming
-rw-r--r--program/steps/addressbook/edit.inc12
-rw-r--r--program/steps/addressbook/show.inc2
-rw-r--r--program/steps/mail/show.inc18
-rw-r--r--program/steps/settings/edit_identity.inc6
-rw-r--r--skins/default/templates/contact.html (renamed from skins/default/templates/showcontact.html)0
-rw-r--r--skins/default/templates/contactadd.html (renamed from skins/default/templates/addcontact.html)0
-rw-r--r--skins/default/templates/contactedit.html (renamed from skins/default/templates/editcontact.html)0
-rw-r--r--skins/default/templates/identityedit.html (renamed from skins/default/templates/editidentity.html)0
-rw-r--r--skins/default/templates/messageprint.html (renamed from skins/default/templates/printmessage.html)0
9 files changed, 19 insertions, 19 deletions
diff --git a/program/steps/addressbook/edit.inc b/program/steps/addressbook/edit.inc
index d975c76f1..831390382 100644
--- a/program/steps/addressbook/edit.inc
+++ b/program/steps/addressbook/edit.inc
@@ -79,15 +79,15 @@ function get_form_tags($attrib)
global $CONTACTS, $EDIT_FORM, $RCMAIL;
$form_start = $form_end = '';
-
+
if (empty($EDIT_FORM)) {
$hiddenfields = new html_hiddenfield(array(
'name' => '_source', 'value' => get_input_value('_source', RCUBE_INPUT_GPC)));
$hiddenfields->add(array('name' => '_gid', 'value' => $CONTACTS->group_id));
-
+
if (($result = $CONTACTS->get_result()) && ($record = $result->first()))
$hiddenfields->add(array('name' => '_cid', 'value' => $record['ID']));
-
+
$form_start = $RCMAIL->output->request_form(array(
'name' => "form", 'method' => "post",
'task' => $RCMAIL->task, 'action' => 'save',
@@ -105,8 +105,8 @@ function get_form_tags($attrib)
$OUTPUT->add_handler('contacteditform', 'rcmail_contact_editform');
-if (!$CONTACTS->get_result() && $OUTPUT->template_exists('addcontact'))
- $OUTPUT->send('addcontact');
+if (!$CONTACTS->get_result() && $OUTPUT->template_exists('contactadd'))
+ $OUTPUT->send('contactadd');
// this will be executed if no template for addcontact exists
-$OUTPUT->send('editcontact');
+$OUTPUT->send('contactedit');
diff --git a/program/steps/addressbook/show.inc b/program/steps/addressbook/show.inc
index 67eaa53ef..f1c23b8e3 100644
--- a/program/steps/addressbook/show.inc
+++ b/program/steps/addressbook/show.inc
@@ -126,4 +126,4 @@ function rcmail_contact_record_groups($contact_id)
//$OUTPUT->framed = $_framed;
$OUTPUT->add_handler('contactdetails', 'rcmail_contact_details');
-$OUTPUT->send('showcontact');
+$OUTPUT->send('contact');
diff --git a/program/steps/mail/show.inc b/program/steps/mail/show.inc
index 13b7ed650..41b4bc614 100644
--- a/program/steps/mail/show.inc
+++ b/program/steps/mail/show.inc
@@ -149,7 +149,7 @@ if ($uid = get_input_value('_uid', RCUBE_INPUT_GET)) {
function rcmail_message_attachments($attrib)
{
global $PRINT_MODE, $MESSAGE;
-
+
$out = $ol = '';
if (sizeof($MESSAGE->attachments)) {
@@ -182,27 +182,27 @@ function rcmail_message_attachments($attrib)
}
$out = html::tag('ul', $attrib, $ol, html::$common_attrib);
- }
-
+ }
+
return $out;
}
function rcmail_remote_objects_msg($attrib)
{
global $MESSAGE, $RCMAIL;
-
+
if (!$attrib['id'])
$attrib['id'] = 'rcmremoteobjmsg';
-
+
$msg = Q(rcube_label('blockedimages')) . '&nbsp;';
$msg .= html::a(array('href' => "#loadimages", 'onclick' => JS_OBJECT_NAME.".command('load-images')"), Q(rcube_label('showimages')));
-
+
// add link to save sender in addressbook and reload message
if ($MESSAGE->sender['mailto'] && $RCMAIL->config->get('show_images') == 1) {
$msg .= ' ' . html::a(array('href' => "#alwaysload", 'onclick' => JS_OBJECT_NAME.".command('always-load')", 'style' => "white-space:nowrap"),
Q(rcube_label(array('name' => 'alwaysshow', 'vars' => array('sender' => $MESSAGE->sender['mailto'])))));
}
-
+
$RCMAIL->output->add_gui_object('remoteobjectsmsg', $attrib['id']);
return html::div($attrib, $msg);
}
@@ -229,8 +229,8 @@ $OUTPUT->add_handlers(array(
'blockedobjects' => 'rcmail_remote_objects_msg'));
-if ($RCMAIL->action=='print' && $OUTPUT->template_exists('printmessage'))
- $OUTPUT->send('printmessage', false);
+if ($RCMAIL->action=='print' && $OUTPUT->template_exists('messageprint'))
+ $OUTPUT->send('messageprint', false);
else if ($RCMAIL->action=='preview' && $OUTPUT->template_exists('messagepreview'))
$OUTPUT->send('messagepreview', false);
else
diff --git a/program/steps/settings/edit_identity.inc b/program/steps/settings/edit_identity.inc
index 89f4dde65..ef2be6584 100644
--- a/program/steps/settings/edit_identity.inc
+++ b/program/steps/settings/edit_identity.inc
@@ -153,9 +153,9 @@ $OUTPUT->set_env('identities_level', IDENTITIES_LEVEL);
$OUTPUT->set_pagetitle(rcube_label(($RCMAIL->action=='add-identity' ? 'newidentity' : 'edititem')));
-if ($RCMAIL->action=='add-identity' && $OUTPUT->template_exists('addidentity'))
- $OUTPUT->send('addidentity');
+if ($RCMAIL->action=='add-identity' && $OUTPUT->template_exists('identityadd'))
+ $OUTPUT->send('identityadd');
-$OUTPUT->send('editidentity');
+$OUTPUT->send('identityedit');
diff --git a/skins/default/templates/showcontact.html b/skins/default/templates/contact.html
index 06d0fbee5..06d0fbee5 100644
--- a/skins/default/templates/showcontact.html
+++ b/skins/default/templates/contact.html
diff --git a/skins/default/templates/addcontact.html b/skins/default/templates/contactadd.html
index 1a10f10ac..1a10f10ac 100644
--- a/skins/default/templates/addcontact.html
+++ b/skins/default/templates/contactadd.html
diff --git a/skins/default/templates/editcontact.html b/skins/default/templates/contactedit.html
index a15aaf22a..a15aaf22a 100644
--- a/skins/default/templates/editcontact.html
+++ b/skins/default/templates/contactedit.html
diff --git a/skins/default/templates/editidentity.html b/skins/default/templates/identityedit.html
index 24c37a629..24c37a629 100644
--- a/skins/default/templates/editidentity.html
+++ b/skins/default/templates/identityedit.html
diff --git a/skins/default/templates/printmessage.html b/skins/default/templates/messageprint.html
index f2775cd61..f2775cd61 100644
--- a/skins/default/templates/printmessage.html
+++ b/skins/default/templates/messageprint.html