1
difenduandada
2024-10-15 7fd2948ee35c8e147ed35ce6d8502f94a98ddd22
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<?php
 
if(isset($_SESSION['message'])){
    show_alert($_SESSION['message']['text'], $_SESSION['message']['type']);
    unset($_SESSION['message']);
}
 
if(isset($_GET['id'])){
    $game = Game::getById($_GET['id']);
    if($game){
        ?>
<div class="section section-full">
    <ul class="nav nav-tabs custom-tab" role="tablist">
        <li class="nav-item" role="presentation">
            <a class="nav-link active"><?php _e('Edit game') ?></a>
        </li>
    </ul>
    <div class="general-wrapper">
        <div class="editgame-wrapper">
            <form id="form-uploadgame" action="request.php" enctype="multipart/form-data" autocomplete="off" method="post">
                <input type="hidden" name="action" value="editGame">
                <input type="hidden" name="redirect" value="dashboard.php?viewpage=gamelist&slug=edit&id=<?php echo $game->id ?>">
                <input type="hidden" name="id" value="<?php echo $game->id ?>">
                <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 $game->title ?>" required/>
                        </div>
                        <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 $game->slug ?>" minlength="3" maxlength="50" required>
                        </div>
                        <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 $game->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 $game->instructions ?></textarea>
                        </div>
                        <div class="mb-3">
                            <label class="form-label"><?php _e('Game URL') ?>:</label>
                            <input type="text" class="form-control" name="url" value="<?php echo $game->url ?>" minlength="3" required>
                        </div>
                        <div class="mb-3">
                            <label class="form-label"><?php _e('Game thumb_1') ?>:</label>
                            <input type="text" class="form-control" name="thumb_1" value="<?php echo $game->thumb_1 ?>" minlength="3" required>
                        </div>
                        <div class="mb-3">
                            <label class="form-label"><?php _e('Game thumb_2') ?>:</label>
                            <input type="text" class="form-control" name="thumb_2" value="<?php echo $game->thumb_2 ?>" minlength="3" required>
                        </div>
                        <div class="mb-3">
                            <label class="form-label"><?php _e('Game small thumbnail') ?>:</label>
                            <input type="text" class="form-control" name="thumb_small" value="<?php echo $game->thumb_small ?>" minlength="3">
                        </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 $game->width ?>" 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 $game->height ?>" 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
                            $selected_categories = commas_to_array($game->category);
                            $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 $game->get_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 = $game->getExtraField($field['field_key']);
                                        $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($game->is_mobile) ? filter_var($game->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($game->published) ? filter_var($game->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('Save changes') ?></button>
            </form>
        </div>
    </div>
</div>
        <?php
    }
}
 
?>