Jakweb.ch stuff
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

126 lines
5.7 KiB

<?php include_once 'header.php';?>
<div class="row">
<div class="col-md-3">
<div class="card">
<div class="card-header card-header-icon card-header-success">
<div class="card-icon">
<i class="material-icons">add</i>
</div>
<h4 class="card-title "><?php echo $jkl["g270"];?></h4>
</div>
<div class="card-body">
<?php if ($errors) { ?>
<div class="alert alert-danger"><?php if (isset($errors["e"])) echo $errors["e"];
if (isset($errors["e1"])) echo $errors["e1"];?></div>
<?php } ?>
<form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
<div class="form-group<?php if (isset($errors["e"])) echo " has-danger";?>">
<label class="control-label" for="question"><?php echo $jkl["g269"];?></label>
<input type="text" name="question" class="form-control" value="<?php if (isset($_POST["question"])) echo $_POST["question"];?>">
<a href="javascript:void(0)" class="btn btn-info btn-sm btn-round btn-fab" onclick="md.showNotification('add_alert', '<?php echo addslashes($jkl["h22"]);?>', 'info', 'top', 'center')"><i class="material-icons">help</i></a>
</div>
<div class="form-group">
<label class="control-label" for="widgetid"><?php echo $jkl["g291"];?></label>
<select name="jak_widgetid[]" id="widgetid" class="selectpicker col-12" data-live-search="true" multiple>
<option value="0" selected><?php echo $jkl["g105"];?></option>
<?php if (isset($JAK_WIDGETS) && is_array($JAK_WIDGETS)) foreach($JAK_WIDGETS as $w) { ?>
<option value="<?php echo $w["id"];?>"><?php echo $w["title"];?></option>
<?php } ?>
</select>
<small class="form-text text-muted">
<?php echo $jkl["h6"];?>
</small>
</div>
<div class="form-group">
<label class="control-label" for="department"><?php echo $jkl["g131"];?></label>
<select name="jak_depid" id="department" class="selectpicker col-12" data-live-search="true">
<option value="0"><?php echo $jkl["g105"];?></option>
<?php if (isset($JAK_DEPARTMENTS) && is_array($JAK_DEPARTMENTS)) foreach($JAK_DEPARTMENTS as $z) { ?>
<option value="<?php echo $z["id"];?>"><?php echo $z["title"];?></option>
<?php } ?>
</select>
</div>
<div class="form-group">
<label class="control-label" for="jak_lang"><?php echo $jkl["g22"];?></label>
<select name="jak_lang" class="selectpicker col-12" data-live-search="true">
<?php if (isset($lang_files) && is_array($lang_files)) foreach($lang_files as $lf) { ?><option value="<?php echo $lf;?>"<?php if (JAK_LANG == $lf) { ?> selected="selected"<?php } ?>><?php echo ucwords($lf);?></option><?php } ?>
</select>
</div>
<div class="form-group<?php if (isset($errors["e1"])) echo " has-danger";?>">
<label class="control-label" for="answer"><?php echo $jkl["g273"];?></label>
<textarea name="answer" class="form-control" rows="3"><?php if (isset($_POST["answer"])) echo $_POST["answer"];?></textarea>
<a href="javascript:void(0)" class="btn btn-info btn-sm btn-round btn-fab" onclick="md.showNotification('add_alert', '<?php echo addslashes($jkl["h21"]);?>', 'info', 'top', 'center')"><i class="material-icons">help</i></a>
</div>
<div class="card-footer">
<button type="submit" name="insert_bot" class="btn btn-primary pull-right"><?php echo $jkl["g38"];?></button>
</div>
</form>
</div>
</div>
</div>
<div class="col-md-9">
<div class="card">
<div class="card-header card-header-icon card-header-rose">
<div class="card-icon">
<i class="material-icons">mood</i>
</div>
<h4 class="card-title "><?php echo $jkl["g271"];?></h4>
</div>
<div class="card-body">
<?php if (isset($BOT_ALL) && is_array($BOT_ALL) && !empty($BOT_ALL)) { ?>
<div class="table-responsive">
<table class="table table-striped table-hover">
<thead>
<tr>
<th>#</th>
<th><?php echo $jkl["g269"];?></th>
<th><?php echo $jkl["g273"];?></th>
<th><?php echo $jkl["g47"];?></th>
<th><?php echo $jkl["g48"];?></th>
</tr>
</thead>
<?php foreach($BOT_ALL as $v) { ?>
<tr>
<td><?php echo $v["id"];?></td>
<td class="title"><a href="<?php echo JAK_rewrite::jakParseurl('bot', 'edit', $v["id"]);?>"><?php echo $v["question"];?></a></td>
<td class="desc"><?php echo $v["answer"];?></td>
<td><a class="btn btn-default btn-sm" href="<?php echo JAK_rewrite::jakParseurl('bot', 'edit', $v["id"]);?>"><i class="fa fa-pencil"></i></a></td>
<td><a class="btn btn-danger btn-sm btn-confirm" href="<?php echo JAK_rewrite::jakParseurl('bot', 'delete', $v["id"]);?>" data-title="<?php echo addslashes($jkl["g48"]);?>" data-text="<?php echo addslashes($jkl["e30"]);?>" data-type="warning" data-okbtn="<?php echo addslashes($jkl["g279"]);?>" data-cbtn="<?php echo addslashes($jkl["g280"]);?>"><i class="fa fa-trash"></i></a></td>
</tr>
<?php } ?>
</table>
</div>
<?php } else { ?>
<div class="alert alert-rose">
<?php echo $jkl['i3'];?>
</div>
<?php } ?>
</div>
</div>
</div>
</div>
<?php include_once 'footer.php';?>