Type of runtime errors */ protected static $errors = [ 0 => 'OK.', 1 => 'General error (or PHP minimal requirement not matched).', 4 => 'Some files have invalid syntax (only in dry-run mode).', 8 => 'Some files need fixing (only in dry-run mode).', 16 => 'Configuration error of the application.', 32 => 'Configuration error of a Fixer.', 64 => 'Exception raised within the application', ]; /** @var boolean User pref to use colored synthax */ protected static $user_ui_colorsyntax = false; /** @var string User pref for colored synthax theme */ protected static $user_ui_colorsyntax_theme = 'default'; /** @var string Settings PHP executable path */ private $phpexe_path = ''; protected function init(): bool { $this->setProperties([ 'id' => 'phpcsfixer', 'name' => __('PHP CS Fixer'), 'description' => __('Fix PSR coding style using Php CS Fixer'), 'priority' => 920, 'configurator' => true, 'types' => ['plugin', 'theme'], ]); $this->getPhpPath(); dcCore::app()->auth->user_prefs->addWorkspace('interface'); self::$user_ui_colorsyntax = dcCore::app()->auth->user_prefs->get('interface')->get('colorsyntax'); self::$user_ui_colorsyntax_theme = dcCore::app()->auth->user_prefs->get('interface')->get('colorsyntax_theme'); return true; } public function isConfigured(): bool { return true; } public function header(): ?string { if (self::$user_ui_colorsyntax) { return dcPage::jsLoadCodeMirror(self::$user_ui_colorsyntax_theme); } return null; } public function configure($url): ?string { if (!empty($_POST['save'])) { $this->setSettings([ 'phpexe_path' => !empty($_POST['phpexe_path']) ? $_POST['phpexe_path'] : '', ]); $this->redirect($url); } $content = (string) file_get_contents(__DIR__ . '/phpcsfixer/phpcsfixer.rules.php'); return '
' . '
' . '' . __('If this module does not work you can try to put here directory to php executable (without executable file name).') . ' C:\path_to\php
' . '' . '' . form::textarea('file_content', 120, 60, [ 'default' => html::escapeHTML($content), 'class' => 'maximal', 'extra_html' => 'readonly="true"', ]) . '
' . ( !self::$user_ui_colorsyntax ? '' : dcPage::jsModuleLoad(Core::id() . '/inc/module/phpcsfixer/phpcsfixer.improve.js') . dcPage::jsRunCodeMirror('editor', 'file_content', 'dotclear', self::$user_ui_colorsyntax_theme) ); } public function closeModule(): ?bool { $command = sprintf( '%sphp %s/phpcsfixer/libs/php-cs-fixer.phar fix %s --config=%s/phpcsfixer/phpcsfixer.rules.php --using-cache=no', $this->phpexe_path, __DIR__, $this->module['sroot'], __DIR__ ); try { exec($command, $output, $error); if (empty($output)) { if (isset(self::$errors[$error])) { $this->setError(self::$errors[$error]); return false; } throw new Exception('oops'); } $this->setSuccess(sprintf('%s', implode('