📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv11.demodesign.com.tr
/
catalog
/
controller
/
extension
/
module
📝
store.php
← Geri Dön
<?php class ControllerExtensionModuleStore extends Controller { public function index() { $status = true; if ($this->config->get('module_store_admin')) { $this->user = new Cart\User($this->registry); $status = $this->user->isLogged(); } if ($status) { $this->load->language('extension/module/store'); $data['store_id'] = $this->config->get('config_store_id'); $data['stores'] = array(); $data['stores'][] = array( 'store_id' => 0, 'name' => $this->language->get('text_default'), 'url' => HTTP_SERVER . 'index.php?route=common/home&session_id=' . $this->session->getId() ); $this->load->model('setting/store'); $results = $this->model_setting_store->getStores(); foreach ($results as $result) { $data['stores'][] = array( 'store_id' => $result['store_id'], 'name' => $result['name'], 'url' => $result['url'] . 'index.php?route=common/home&session_id=' . $this->session->getId() ); } return $this->load->view('extension/module/store', $data); } } }
💾 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