File manager - Edit - /home/newsbmcs.com/public_html/static/img/logo/addgame-upload.php.tar
Back
home/newsbmcs.com/public_html/play1/admin/core/addgame-upload.php 0000644 00000013665 15027321640 0021032 0 ustar 00 <div class="addgame-wrapper" id="addgame"> <form id="form-uploadgame" action="upload.php" enctype="multipart/form-data" autocomplete="off" method="post"> <input type="hidden" name="source" value="self"/> <input type="hidden" name="tags" value=""/> <div class="row"> <div class="col-md-8"> <div class="mb-3"> <label class="form-label" for="title"><?php _e('Game title') ?>:</label> <input type="text" class="form-control" name="title" value="<?php echo (isset($_SESSION['title'])) ? $_SESSION['title'] : "" ?>" id="game-title-upload" required/> </div> <?php if(CUSTOM_SLUG){ ?> <div class="mb-3"> <label class="form-label" for="slug"><?php _e('Game slug') ?>:</label> <input type="text" class="form-control" name="slug" placeholder="game-title" value="<?php echo (isset($_SESSION['slug'])) ? $_SESSION['slug'] : "" ?>" minlength="3" maxlength="50" id="game-slug-upload" required> </div> <?php } ?> <div class="mb-3"> <label class="form-label" for="description"><?php _e('Description') ?>:</label> <textarea class="form-control" name="description" rows="3" required><?php echo (isset($_SESSION['description'])) ? $_SESSION['description'] : "" ?></textarea> </div> <div class="mb-3"> <label class="form-label" for="instructions"><?php _e('Instructions') ?>:</label> <textarea class="form-control" name="instructions" rows="3"><?php echo (isset($_SESSION['instructions'])) ? $_SESSION['instructions'] : "" ?></textarea> </div> <label class="form-label" for="gamefile"><?php _e('Game file') ?> (.zip):</label> <ul> <li>Must contain index.html on root</li> <li>Must contain "thumb_1.jpg" (512x384px) on root</li> <li>Must contain "thumb_2.jpg"(512x512px) on root</li> </ul> <div class="input-group mb-3"> <div class="custom-file"> <label class="form-label" class="custom-file-label" for="input_gamefile"><?php _e('Choose file') ?>:</label> <input type="file" name="gamefile" class="form-control" id="input_gamefile" accept=".zip" required> </div> </div> <div class="mb-3"> <label class="form-label" for="width"><?php _e('Game width') ?>:</label> <input type="number" class="form-control" name="width" value="<?php echo (isset($_SESSION['width'])) ? $_SESSION['width'] : "720" ?>" required/> </div> <div class="mb-3"> <label class="form-label" for="height"><?php _e('Game height') ?>:</label> <input type="number" class="form-control" name="height" value="<?php echo (isset($_SESSION['height'])) ? $_SESSION['height'] : "1080" ?>" required/> </div> <div class="mb-3"> <label class="form-label" for="category"><?php _e('Category') ?>:</label> <select multiple class="form-control" name="category[]" size="8" required/> <?php $results = array(); $data = Category::getList(); $categories = $data['results']; foreach ($categories as $cat) { $selected = (in_array($cat->name, $selected_categories)) ? 'selected' : ''; echo '<option '.$selected.'>'.$cat->name.'</option>'; } ?> </select> </div> </div> <div class="col-md-4"> <div class="mb-3"> <label class="form-label" for="tags"><?php _e('Tags') ?>:</label> <input type="text" class="form-control" name="tags" value="<?php echo (isset($_SESSION['tags'])) ? $_SESSION['tags'] : "" ?>" id="tags-upload" placeholder="<?php _e('Separated by comma') ?>"> </div> <div class="tag-list"> <?php $tag_list = get_tags('usage'); if(count($tag_list)){ echo '<div class="mb-3">'; foreach ($tag_list as $tag_name) { echo '<span class="badge rounded-pill bg-secondary btn-tag" data-target="tags-upload" data-value="'.$tag_name.'">'.$tag_name.'</span>'; } echo '</div>'; } ?> </div> <?php $extra_fields = get_extra_fields('game'); if(count($extra_fields)){ ?> <div class="extra-fields"> <?php foreach ($extra_fields as $field) { ?> <div class="mb-3"> <label class="form-label" for="<?php echo $field['field_key'] ?>"><?php _e($field['title']) ?>: <br> <small class="fst-italic text-secondary"><?php echo $field['field_key'] ?></small> </label> <?php $default_value = $field['default_value']; $placeholder = $field['placeholder']; if($field['type'] === 'textarea'){ echo '<textarea class="form-control" name="extra_fields['.$field['field_key'].']" rows="3">'.$default_value.'</textarea>'; } else if($field['type'] === 'number'){ echo '<input type="number" name="extra_fields['.$field['field_key'].']" class="form-control" placeholder="'.$placeholder.'" value="'.$default_value.'">'; } else if($field['type'] === 'text'){ echo '<input type="text" name="extra_fields['.$field['field_key'].']" class="form-control" placeholder="'.$placeholder.'" value="'.$default_value.'">'; } ?> </div> <?php } ?> </div> <?php } ?> </div> </div> <div class="mb-3"> <input id="is_mobile" type="checkbox" name="is_mobile" <?php echo (isset($_SESSION['is_mobile']) ? filter_var($_SESSION['is_mobile'], FILTER_VALIDATE_BOOLEAN) : true) ? 'checked' : ''; ?>> <label class="form-label" for="is_mobile"><?php _e('Is mobile compatible') ?></label><br> <input id="published" type="checkbox" name="published" <?php echo (isset($_SESSION['published']) ? filter_var($_SESSION['published'], FILTER_VALIDATE_BOOLEAN) : true) ? 'checked' : ''; ?>> <label class="form-label" for="published"><?php _e('Published') ?></label><br> <p style="margin-left: 20px;" class="text-secondary"> <?php _e('If unchecked, this game will set as Draft.') ?> </p> </div> <button type="submit" class="btn btn-primary btn-md"><?php _e('Upload game') ?></button> </form> </div>