📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv9.demodesign.com.tr
/
adminco
/
inc
📝
products.php
← Geri Dön
<?php if(!defined('ADMIN_INCLUDED')) { exit; } ?> <?php $extra_title = ''; $where_column = ''; $where_value = ''; if($_GET['b_id']) { $brands = $db->table('brands')->where('id','=',m_a_g('b_id'))->get(); if($brands['total_count']==0) { m_redirect(ADMIN_URL); } $brand = $brands['data'][0]; $extra_title = ' - '.LGA_BRAND.': '.$brand['title'].''; $where_column = 'b_id'; $where_value = $brand['id']; } if($_GET['c_id']) { $categories = $db->table('categories')->where('id','=',m_a_g('c_id'))->get(); if($categories['total_count']==0) { m_redirect(ADMIN_URL); } $category = $categories['data'][0]; $home_category = ''; if($category['c_id']!=0) { $home_category = ''.$db->table('categories')->where('id','=',$category['c_id'])->get_var('title').' - '; } $extra_title = ' - '.LGA_CATEGORY.': '.$home_category.''.$category['title'].''; $where_column = 'c_id'; $where_value = $category['id']; } ?> <div class="container-fluid"> <div class="row"> <div class="col-12"> <div class="page-title-box d-sm-flex align-items-center justify-content-between"> <a href="<?php echo ADMIN_URL; ?>/index.php?page=products"><h4 class="mb-sm-0 font-size-18"><?php echo LGA_PRODUCTS; ?></h4></a> <div class="page-title-right"> <ol class="breadcrumb m-0"> <li class="breadcrumb-item"><a href="<?php echo ADMIN_URL; ?>"><?php echo LGA_HOME; ?></a></li> <li class="breadcrumb-item active"><?php echo LGA_PRODUCTS; ?></li> </ol> </div> </div> </div> </div> <div class="row"> <div class="col-12"> <div class="card"> <div class="card-header"> <h4 class="card-title"><?php echo LGA_PRODUCTS_LIST; ?><?php echo $extra_title; ?></h4> <div class="text-end"> <a href="<?php echo ADMIN_URL; ?>/index.php?page=product_add"><span class="btn btn-success btn-label"><i class="fa fa-plus-circle label-icon"></i> <?php echo LGA_PRODUCT_ADD; ?></span></a> </div> </div> <div class="card-body"> <input type="text" class="form-control ajax_table_search" placeholder="Aramak için yazınız."> <div class="ajax_table" rel="products" data-where_column="<?php echo $where_column; ?>" data-where_value="<?php echo $where_value; ?>"> <div class="ajax_table_content"> </div> </div> </div> </div> </div> </div> </div>
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula