83 lines
3.5 KiB
PHP
Executable File
83 lines
3.5 KiB
PHP
Executable File
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
/*Powered By: Manaknightdigital Inc. https://manaknightdigital.com/ Year: 2020*/
|
|
if ($layout_clean_mode) {
|
|
echo '<style>#content{padding:0px !important;}</style>';
|
|
}
|
|
?>
|
|
|
|
<div class="tab-content mx-4 mt-3" id="nav-tabContent">
|
|
<!-- Bread Crumb -->
|
|
<div aria-label="breadcrumb">
|
|
<ol class="breadcrumb pl-0 mb-1 bg-background d-flex justify-content-center justify-content-md-start">
|
|
<li class="breadcrumb-item active" aria-current="page">
|
|
<a href="/admin/image/0" class="breadcrumb-link"><?php echo $view_model->get_heading();?></a>
|
|
</li>
|
|
<li class="breadcrumb-item active" aria-current="page">
|
|
Add
|
|
</li>
|
|
</ol>
|
|
</div>
|
|
|
|
<?php if (validation_errors()) : ?>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="alert alert-danger" role="alert">
|
|
<?= validation_errors() ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if (strlen($error) > 0) : ?>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="alert alert-danger" role="alert">
|
|
<?php echo $error; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if (strlen($success) > 0) : ?>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="alert alert-success" role="success">
|
|
<?php echo $success; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
<div class="row mb-5">
|
|
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h5 class="primaryHeading2 mb-4 text-md-left pl-3">
|
|
Add <?php echo $view_model->get_heading();?>
|
|
</h5>
|
|
<?= form_open() ?>
|
|
|
|
<div class="form-group col-md-5 col-sm-12">
|
|
<label for="URL">URL <b class="required_field"> * </b></label>
|
|
<img id="output_url" style="max-height:100px" onerror=\"if (this.src != '/uploads/placeholder.jpg') this.src = '/uploads/placeholder.jpg';\"/>
|
|
<div class="btn uppload-button image_id_uppload_library btn-primary btn-sm " data-image-url="url" data-image-id="url_id" data-image-preview="output_url" data-view-width="250" data-view-height="250" data-boundary-width="500" data-boundary-height="500">Choose Image</div>
|
|
<div class='btn btn-success' onclick='show_image_gallery("url", "url_id")'>Gallery</div> <div class="btn btn-primary btn-sm mkd-media-gallery" data-target="#mkd-media-gallery" data-toggle="modal" data-view-width="250" data-view-height="250" data-boundary-width="500" data-boundary-height="500">Media Gallery</div>
|
|
<input type="hidden" id="url" name="url" value=""/>
|
|
<input type="hidden" id="url_id" name="url_id" value=""/>
|
|
<span id="url_complete" class="image_complete_uppload" ></span></div> <div class="form-group col-md-5 col-sm-12 ">
|
|
<label for="Image Type">Image Type </label>
|
|
<select id="form_type" name="type" class="form-control data-input">
|
|
<?php foreach ($view_model->type_mapping() as $key => $value) {
|
|
echo "<option value='{$key}'> {$value} </option>";
|
|
}?>
|
|
</select>
|
|
</div>
|
|
|
|
|
|
<div class="form-group col-md-5 col-sm-12">
|
|
<input type="submit" class="btn btn-primary text-white mr-4 my-4" value="Submit">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|