-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate-template.php
128 lines (112 loc) · 5.05 KB
/
create-template.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?php include('includes/header.php');?>
<?php include('includes/login/auth.php');?>
<?php include('includes/templates/main.php');?>
<?php
//IDs
$aid = isset($_GET['i']) && is_numeric($_GET['i']) ? get_app_info('app') : exit;
if(get_app_info('is_sub_user'))
{
if(get_app_info('app')!=get_app_info('restricted_to_app'))
{
echo '<script type="text/javascript">window.location="'.addslashes(get_app_info('path')).'/templates?i='.get_app_info('restricted_to_app').'"</script>';
exit;
}
}
?>
<script src="<?php echo get_app_info('path');?>/js/ckeditor/ckeditor.js?11"></script>
<?php $dark_mode = get_app_info('dark_mode');?>
<?php include('js/create/editor.php');?>
<!-- Validation -->
<script type="text/javascript" src="<?php echo get_app_info('path');?>/js/validate.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#edit-form").validate({
rules: {
template_name: {
required: true
},
html: {
required: true
}
},
messages: {
template_name: "<?php echo addslashes(_('The name of this template is required'));?>",
html: "<?php echo addslashes(_('Your HTML code is required'));?>"
}
});
$("#template_name").focus();
});
</script>
<div class="row-fluid">
<div class="span2">
<?php include('includes/sidebar.php');?>
</div>
<div class="span10">
<div class="row-fluid">
<div class="span10">
<div>
<p class="lead">
<?php if(get_app_info('is_sub_user')):?>
<?php echo get_app_data('app_name');?>
<?php else:?>
<a href="<?php echo get_app_info('path'); ?>/edit-brand?i=<?php echo get_app_info('app');?>" data-placement="right" title="<?php echo _('Edit brand settings');?>"><?php echo get_app_data('app_name');?> <span class="icon icon-pencil top-brand-pencil"></span></a>
<?php endif;?>
</p>
</div>
<h2><?php echo _('Create template');?></h2><br/>
</div>
</div>
<div class="row-fluid">
<form action="<?php echo get_app_info('path')?>/includes/templates/save-template.php?i=<?php echo get_app_info('app')?>" method="POST" accept-charset="utf-8" class="form-vertical" id="edit-form">
<div class="span3">
<label class="control-label" for="template_name"><?php echo _('Template name');?></label>
<div class="control-group">
<div class="controls">
<input type="text" class="input-xlarge" id="template_name" name="template_name" placeholder="<?php echo _('Name of this template');?>">
</div>
</div>
<label class="control-label" for="from_name" style="clear:both;"><?php echo _('From name');?></label>
<div class="control-group">
<div class="controls">
<input type="text" class="input-xlarge" id="from_name" name="from_name" placeholder="<?php echo _('From name');?>" value="<?php echo get_app_data('from_name');?>">
</div>
</div>
<label class="control-label" for="from_email"><?php echo _('From email');?></label>
<div class="control-group">
<div class="controls">
<input type="text" class="input-xlarge" id="from_email" name="from_email" placeholder="<?php echo _('name@domain.com');?>" value="<?php echo get_app_data('from_email');?>">
</div>
</div>
<label class="control-label" for="reply_to"><?php echo _('Reply to email');?></label>
<div class="control-group">
<div class="controls">
<input type="text" class="input-xlarge" id="reply_to" name="reply_to" placeholder="<?php echo _('name@domain.com');?>" value="<?php echo get_app_data('reply_to');?>">
</div>
</div>
<label class="control-label" for="plain"><?php echo _('Plain text version');?></label>
<div class="control-group">
<div class="controls">
<textarea class="input-xlarge" id="plain" name="plain" rows="10" placeholder="<?php echo _('Plain text version of this template');?>"></textarea>
</div>
</div>
<button type="submit" class="btn btn-inverse" id="save-button"><i class="icon-ok icon-white"></i> <?php echo _('Save template');?></button>
</div>
<div class="span9">
<p>
<label class="control-label" for="html"><?php echo _('HTML code');?></label>
<div class="control-group">
<div class="controls">
<textarea class="input-xlarge" id="html" name="html" rows="10" placeholder="<?php echo _('Email content');?>"></textarea>
</div>
</div>
<p><?php echo _('Use the following tags in your subject, plain text or HTML code and they\'ll automatically be formatted when your campaign is sent. For web version and unsubscribe tags, you can style them with inline CSS.');?></p><br/>
<div class="row-fluid">
<?php include('includes/helpers/personalization.tags.php');?>
</div>
</p>
</div>
</form>
</div>
</div>
</div>
<?php include('includes/footer.php');?>