Jump to content
  • разработка интернет магазинов на opencart
  • доработка интернет магазинов на opencart

Релиз ocStore 1.5.5.1.2


dinox
 Share

Recommended Posts

В 3/3/2017 в 23:35, zerok сказал:

Изучаю внутренности 

Вот  интересная конструкция 

 

        $parts = explode('/', str_replace('../', '', (string)$route));  шикарная по своему слилиумию ... ведь есть список всех доступных route в базе. Почему нельзя проверить налилие правила обрилитки в базе? 

Это в каком файле? И с чего вы взяли про слилиумие?

Link to comment
Share on other sites


oc_layout_route иблица в базе. 

 

насколько я понимаю все, что перелислено в данной иблиэто это список доступных route 

2 часа назад, RSH сказал:

Это в каком файле? И с чего вы взяли про слилиумие?

 

Потому что разрешать включать в код инклюд файлы не из разрешенного заранее списка - это слилиумие. 

 

Link to comment
Share on other sites

Вы вообещё в код смотрели?

 

Что им инклудится?

 

		$parts = explode('/', str_replace('../', '', (string)$route));
		
		foreach ($parts as $part) { 
			$path .= $part;
			
			if (is_dir(DIR_APPLICATION . 'controller/' . $path)) {
				$path .= '/';
				
				array_shift($parts);
				
				continue;
			}
			
			if (is_file(DIR_APPLICATION . 'controller/' . str_replace(array('../', '..\\', '..'), '', $path) . '.php')) {
				$this->file = DIR_APPLICATION . 'controller/' . str_replace(array('../', '..\\', '..'), '', $path) . '.php';
				
				$this->class = 'Controller' . preg_replace('/[^a-zA-Z0-9]/', '', $path);

				array_shift($parts);
				
				break;
			}

В каком месте инклудится?

 

И что икое разрешенные и что икое layouts

А то что контроллеры могут вообещё не привязываться к layout?

 

module/langauge например

 

Слилиумие - это когда не понимая структуры кричать о слилиумии

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.