'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' ]; protected static $user_ui_colorsyntax = false; protected static $user_ui_colorsyntax_theme = 'default'; protected function init(): bool { $this->setProperties([ 'id' => 'phpcsfixer', 'name' => __('PHP CS Fixer'), 'desc' => __('Fix PSR coding style using Php CS Fixer'), 'priority' => 920, 'config' => true, 'types' => ['plugin', 'theme'] ]); $this->core->auth->user_prefs->addWorkspace('interface'); self::$user_ui_colorsyntax = $this->core->auth->user_prefs->interface->colorsyntax; self::$user_ui_colorsyntax_theme = $this->core->auth->user_prefs->interface->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 = file_get_contents(dirname(__FILE__) . '/libs/dc.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::jsLoad(dcPage::getPF('improve/inc/lib.improve.action.phpcsfixer.js')) . dcPage::jsRunCodeMirror('editor', 'file_content', 'dotclear', self::$user_ui_colorsyntax_theme) ); } public function closeModule(): ?bool { $phpexe_path = $this->getPhpPath(); if (!empty($phpexe_path)) { $phpexe_path .= '/'; } $command = sprintf( '%sphp %s/libs/php-cs-fixer.phar fix %s --config=%s/libs/dc.phpcsfixer.rules.php --using-cache=no', $phpexe_path, dirname(__FILE__), $this->module['sroot'], dirname(__FILE__) ); 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('