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.

179 lines
6.2 KiB

<?php
/*
Slovenski narečni atlas / Slovenian dialectal atlas
Copyright (C) 2017 Gregor Šajn
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
?>
<div class="container container-panel">
<?
$this->load->view('admin/index_view.php');
?>
<div class="row" style="overflow: none">
<?
$this->load->view('admin/admin_nav.php');
?>
<!-- tukaj se naloži poljuben pogled -->
<div class="col-sm-9">
<ol class="breadcrumb">
<li><a href="<?=$this->url?>lexems">Leksemi</a></li>
<li><a href="<?=$this->url?>edit_lexem/<?=$lexem['id']?>"><?=$lexem['title']?></a></li>
</ol>
<div class="row">
<div class="col-sm-9"><h4 class="text-muted"><?=$lexem['title']?></h4></div>
<div class="col-sm-3 text-right">
<a class="btn btn-danger confirm" href="<?=$this->url?>lexem_delete/<?=$lexem['id']?>" title="Odstrani leksem">Odstrani</a></div>
</div>
<br>
<!-- alerts -->
<?
if(isset($errfields) and $errfields)
{
$alert_text='<ul>';
foreach($errfields as $errfield)
{
$alert_text.='<li>'.$errfield.'</li>';
}
$alert_text.='</ul>'
?>
<div class="alert alert-danger fade in" id="alert_err" role="alert">
<button type="button" class="close">
<span aria-hidden="true">&times;</span>
</button>
<span class="glyphicon glyphicon-exclamation-sign text-danger"></span> <?=$alert_text?>
</div>
<?
}
elseif(isset($status) and $status=='ok')
{
?>
<div class="alert alert-success fade in" id="alert_ok" role="alert">
<button type="button" class="close">
<span aria-hidden="true">&times;</span>
</button>
<span class="text-success glyphicon glyphicon-ok"></span> Spremembe uspešno shranjene!
</div>
<?
}
?>
<form class="form-horizontal form-border" action="<?=$this->url?>post_edit_lexem" method="POST" id="edit_lexem">
<input type="hidden" id="id" name="id" value="<?=$lexem['id']?>">
<div class="form-group">
<label for="subjects" class="col-sm-2 control-label">Tema</label>
<div class="col-sm-10">
<select class="form-control" style="width:300px;" id="subjects" name="subjects" onchange="ajax_update_words();">
<?
foreach($subjects as $id=>$subject)
{
?><option value="<?=$id?>" <?=$id==$lexem['id_subject']?'selected="selected"':''?> ><?=$subject?></option><?
}
?>
</select>
</div>
</div>
<div class="form-group">
<label for="words" class="col-sm-2 control-label">Beseda<span class="text-danger">*</span></label>
<div class="col-sm-10">
<select class="form-control" style="width:300px;" name="words" id="words">
<?
foreach($words as $id=>$word)
{
?><option value="<?=$id?>" <?=$id==$lexem['id_word']?'selected="selected"':''?>><?=$word?></option><?
}
?>
</select>
</div>
</div>
<div class="form-group">
<label for="title" class="col-sm-2 control-label">Leksem<span class="text-danger">*</span></label>
<div class="col-sm-10">
<input type="text" class="form-control input-md" value="<?=$lexem['title']?>" id="title" name="title" style="width:300px;">
</div>
</div>
<div class="form-group">
<label for="icon" class="col-sm-2 control-label">Simbol leksema<span class="text-danger">*</span></label>
<div class="col-sm-10">
<input type="text" class="form-control input-md SIMBola" value="<?=$lexem['icon']?>" id="icon" name="icon" style="width:100px;">
</div>
</div>
<div class="form-group">
<label for="title" class="col-sm-2 control-label">Barva simbola leksema</label>
<div class="col-sm-10" style="padding-top:5px;">
<input name="icon_color" id="icon_color" value="<?=$lexem['icon_color']?>" type="color"/>
</div>
</div>
<br>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-success button-medium">Shrani</button>
<button type="submit" class="btn btn-default button-medium" name=save_close>Shrani in zapri</button>
</div>
</div>
</form>
<br>
</div>
</div>
</div>
<script type="text/javascript">
$('.close').click(function() {
$('#alert_err').fadeOut(500);
$('#alert_ok').fadeOut(500);
});
$('.confirm').click(function() {
return window.confirm("Izbriši leksem?");
});
function ajax_update_words()
{
var id_subject=$("#subjects option:selected").val();
$.ajax({
type: "POST",
url: "<?=$this->url?>ajax_update_words",
cache: false,
data: {
id_subject: id_subject
},
dataType: "json",
success: function(data){
if(data.status=='ok')
{
var options;
$('#words').empty();
$.each(data.words, function(id, title){
options += '<option value=' + id + '>' + title + '</option>';
});
$('#words').append(options);
}
},
error: function(){
alert('Prišlo je do napake pri nalaganju podatkov. Prosimo poskusite ponovno!');
}
});
}
</script>