Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/site/app/views/developers/add_step1.thtml
diff options
context:
space:
mode:
Diffstat (limited to 'site/app/views/developers/add_step1.thtml')
-rw-r--r--site/app/views/developers/add_step1.thtml134
1 files changed, 134 insertions, 0 deletions
diff --git a/site/app/views/developers/add_step1.thtml b/site/app/views/developers/add_step1.thtml
new file mode 100644
index 0000000..228efb3
--- /dev/null
+++ b/site/app/views/developers/add_step1.thtml
@@ -0,0 +1,134 @@
+<?php
+/* ***** BEGIN LICENSE BLOCK *****
+ * Version: MPL 1.1/GPL 2.0/LGPL 2.1
+ *
+ * The contents of this file are subject to the Mozilla Public License Version
+ * 1.1 (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ * http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+ * for the specific language governing rights and limitations under the
+ * License.
+ *
+ * The Original Code is addons.mozilla.org site.
+ *
+ * The Initial Developer of the Original Code is
+ * Justin Scott <fligtar@gmail.com>.
+ * Portions created by the Initial Developer are Copyright (C) 2006
+ * the Initial Developer. All Rights Reserved.
+ *
+ * Contributor(s):
+ * Wil Clouser <wclouser@mozilla.com>
+ * Frederic Wenzel <fwenzel@mozilla.com>
+ *
+ * Alternatively, the contents of this file may be used under the terms of
+ * either the GNU General Public License Version 2 or later (the "GPL"), or
+ * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+ * in which case the provisions of the GPL or the LGPL are applicable instead
+ * of those above. If you wish to allow use of your version of this file only
+ * under the terms of either the GPL or the LGPL, and not to allow others to
+ * use your version of this file under the terms of the MPL, indicate your
+ * decision by deleting the provisions above and replace them with the notice
+ * and other provisions required by the GPL or the LGPL. If you do not delete
+ * the provisions above, a recipient may use your version of this file under
+ * the terms of any one of the MPL, the GPL or the LGPL.
+ *
+ * ***** END LICENSE BLOCK ***** */
+?>
+<div id="content">
+ <?=$this->renderElement('developers/additem');?>
+
+ <div id="content-main">
+ <h3><?=sprintf('%s &bull; %s', _('devcp_header_step1'), _('devcp_header_step1_upload'))?></h3>
+
+ <?php
+ echo $html->formTag('/developers/add/'.$id, 'post', array('enctype'=>'multipart/form-data'));
+ echo $html->hidden('Addon/add_step1');
+ echo $html->hidden('Addon/newAddon', array('value' => ($newAddon == true ? 'true' : 'false')));
+ if ($newAddon == false) {
+ echo '<div class="addonName">'.$existing['Translation']['name']['string'].'</div>';
+ }
+ if (!empty($errors['main'])) {
+ echo '<div class="error">'.$errors['main'].'</div>';
+ }
+ ?>
+ <div id="developersForm">
+ <div>
+ <label for="AddonAddontypeId"><?=_('devcp_form_label_addontype')?></label>
+ <?php
+ if ($newAddon == true) {
+ echo $html->selectTag('Addon/addontype_id', $allowedAddonTypes, null, array('onChange' => 'selectType(this);'), null, false);
+ echo $html->tagErrorMsg('Addon/addontype_id', _('devcp_form_error_select_addontype'));
+ }
+ else {
+ echo $addonTypes[$existing['Addon']['addontype_id']];
+ echo $html->hidden('Addon/addontype_id', array('value' => $existing['Addon']['addontype_id']));
+ }
+ ?>
+ </div>
+ <div>
+ <label for="FileFile1"><?=_('devcp_form_label_addonfile')?></label>
+ <?=$html->file('File/file1').$html->tagErrorMsg('File/file1', $errors['File/file1'])?>
+ <div class="platforms" <?=(((!empty($existing['Addon']['addontype_id']) && $existing['Addon']['addontype_id'] == ADDON_SEARCH) || (!empty($data['Addon']['addontype_id']) && $data['Addon']['addontype_id'] == ADDON_SEARCH)) ? ' style="display: none;"' : '')?>>
+ <label for="FilePlatformId1"><?=_('devcp_form_label_platforms')?></label>
+ <?=$html->selectTag('File/platform_id1', $platforms, null, array('onChange' => 'selectPlatform(this);'), null, false)?>
+ </div>
+ </div>
+ <div id="file2"<?=(empty($data['File']['file2']['name'])) ? ' style="display: none;"' : ''?>>
+ <label for="FileFile2"><?=_('devcp_form_label_addonfile2')?></label>
+ <?=$html->file('File/file2').$html->tagErrorMsg('File/file2', $errors['File/file2'])?>
+ <div class="platforms">
+ <label for="FilePlatformId2"><?=_('devcp_form_label_platforms')?></label>
+ <?php unset($platforms[1]); ?>
+ <?=$html->selectTag('File/platform_id2', $platforms, $data['File']['platform_id2'])?>
+ </div>
+ </div>
+ <div id="file3"<?=(empty($data['File']['file3']['name'])) ? ' style="display: none;"' : ''?>>
+ <label for="FileFile3"><?=_('devcp_form_label_addonfile3')?></label>
+ <?=$html->file('File/file3').$html->tagErrorMsg('File/file3', $errors['File/file3'])?>
+ <div class="platforms">
+ <label for="FilePlatformId3"><?=_('devcp_form_label_platforms')?></label>
+ <?=$html->selectTag('File/platform_id3', $platforms, $data['File']['platform_id3'])?>
+ </div>
+ </div>
+ <div id="addrow"<?=(!empty($data['File']['platform_id1']) && $data['File']['platform_id1'] > 1 && !empty($data['Addon']['addontype_id']) && $data['Addon']['addontype_id'] != ADDON_SEARCH) ? '' : ' style="display: none;"'?>>
+ <?=$html->link(_('devcp_file_addanother'), 'javascript: void(0);', array('onClick' => 'addFile();'))?>
+ </div>
+ <?php
+ if ($newAddon == true) {
+ echo '<div>';
+ echo '<label for="FileFile4">'._('devcp_form_label_iconfile').'</label>';
+ echo $html->file('File/file4').$html->tagErrorMsg('File/file4', $errors['File/file4']);
+ echo '</div>';
+ }
+ ?>
+ <div>
+ <label for="AddonDefaultlocale"><?=_('devcp_form_label_defaultlocale')?></label>
+ <select id="AddonDefaultlocale" name="data[Addon][defaultlocale]">
+ <?php
+ foreach ($languages as $key => $language) {
+ echo '<option value="'.$key.'" '.($key == $defaultLocale ? 'selected' : '').'>'
+ .$language.'</option>';
+ }
+ ?>
+ </select>
+ </div>
+ <?php
+ if ($newAddon == false) {
+ echo '<div>';
+ $ReviewInfo['class'] = 'vmiddle';
+ echo $html->checkbox('Addon/Review', null, $ReviewInfo);
+ echo '<label for="AddonReview" class="nofloat">'._('devcp_skip_reviewing_addon_info').'</label>';
+ echo '</div>';
+ }
+ ?>
+ <div class="buttonBox">
+ <?=$html->submit(_('devcp_button_next').' &raquo;', array('escape' => false))?>
+ <?=$html->submit(_('devcp_button_cancel'), array('name' => 'cancel', 'class' => 'cancel', 'onClick' => 'return confirm(\''._('devcp_button_cancel_confirm').'\');'))?>
+ </div>
+ </div> <!-- developersForm -->
+ </form>
+ </div>
+</div>