first commit

This commit is contained in:
ryanwong
2022-06-30 05:46:02 -04:00
commit a96eaec33b
859 changed files with 199842 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*Powered By: Manaknightdigital Inc. https://manaknightdigital.com/ Year: 2021*/
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" style="background-color: inherit;">
<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">
View
</li>
</ol>
</div>
<div class="row mb-5">
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
<div class="card pb-5" style='border-bottom:1px solid #ccc;'>
<div class="card-body">
<h5 class="primaryHeading2 text-md-left">
<?php echo $view_model->get_heading();?> Details
</h5>
<div class='row mb-4'>
<div class='col'>
<span class='d-block'>URL</span>
<img class="img-fluid d-block mb-3 mt-3 view-image" style='max-height: 100px;' src="<?php echo $view_model->get_url();?>" onerror=\"if (this.src != '/uploads/placeholder.jpg') this.src = '/uploads/placeholder.jpg';\"/>
</div>
</div>
<div class='row mb-4'>
<div class='col-lg-3 col-12'>
Image Type
</div>
<div class='col-lg-9 col-12'>
<?php echo $view_model->type_mapping()[$view_model->get_type()];?>
</div>
</div>
</div>
</div>
</div>
</div>