file = DIR_APP_MODULAR . $strReplaceOnPathNew . 'Controller/' . $strReplaceOnPart . '.php'; $this->class = 'Controller' . $pregReplaceOnPath; $this->classAlt = [ 'class' => $this->mountClass($strReplaceOnPathNew, $pregReplaceOnPart), 'legacy' => $this->class, 'ucfirst' => ucfirst($pregReplaceOnPart), 'direct' => $pregReplaceOnPart ]; array_shift($parts); break; } elseif (is_file(DIR_APP_MODULAR . $strReplaceOnPathNew . 'Controller/' . ucfirst($strReplaceOnPart) . '.php')) { $this->file = DIR_APP_MODULAR . $strReplaceOnPathNew . 'Controller/' . ucfirst($strReplaceOnPart) . '.php'; $this->class = 'Controller' . $pregReplaceOnPath; $this->classAlt = [ 'class' => $this->mountClass($strReplaceOnPathNew, $pregReplaceOnPart), 'legacy' => $this->class, 'ucfirst' => ucfirst($pregReplaceOnPart), 'direct' => $pregReplaceOnPart ]; array_shift($parts); break; } elseif (is_file(DIR_APPLICATION . 'controller/' . $strReplaceOnPath . '.php')) { $this->file = DIR_APPLICATION . 'controller/' . $strReplaceOnPath . '.php'; $this->class = 'Controller' . $pregReplaceOnPath; $this->classAlt = [ 'class' => $this->mountClass($strReplaceOnPathNew, $pregReplaceOnPart), 'legacy' => $this->class, 'ucfirst' => ucfirst($pregReplaceOnPart), 'direct' => $pregReplaceOnPart ]; array_shift($parts); break; } } if ($args) { $this->args = $args; } $method = array_shift($parts); if ($method) { $this->method = $method; } else { $this->method = 'index'; } } } /** @package Phacil\Framework */ final class ActionSystem implements ActionInterface { use ActionTrait; /** * @param string $route * @param array $args * @return void */ public function __construct($route, $args = array()) { $path = ''; $parts = explode('/', str_replace('../', '', (string)$route)); foreach ($parts as $part) { $path .= $part; if (is_dir(DIR_SYSTEM . '' . $path)) { $path .= '/'; array_shift($parts); continue; } if (is_file(DIR_SYSTEM . '' . str_replace('../', '', $path) . '.php')) { $this->file = DIR_SYSTEM . '' . str_replace('../', '', $path) . '.php'; $this->class = 'System' . preg_replace('/[^a-zA-Z0-9]/', '', $path); $this->classAlt = [ 'legacy' => $this->class, 'direct' => preg_replace('/[^a-zA-Z0-9]/', '', $part) ]; array_shift($parts); break; } } if ($args) { $this->args = $args; } $method = array_shift($parts); if ($method) { $this->method = $method; } else { $this->method = 'index'; } } }