View source
<?php
namespace Drupal\advagg_ext_minify\Form;
use Drupal\Core\Asset\AssetCollectionOptimizerInterface;
use Drupal\Core\Cache\Cache;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class SettingsForm extends ConfigFormBase {
protected $cssCollectionOptimizer;
protected $jsCollectionOptimizer;
public function __construct(ConfigFactoryInterface $config_factory, AssetCollectionOptimizerInterface $css_collection_optimizer, AssetCollectionOptimizerInterface $js_collection_optimizer) {
parent::__construct($config_factory);
$this->cssCollectionOptimizer = $css_collection_optimizer;
$this->jsCollectionOptimizer = $js_collection_optimizer;
}
public static function create(ContainerInterface $container) {
return new static($container
->get('config.factory'), $container
->get('asset.css.collection_optimizer'), $container
->get('asset.js.collection_optimizer'));
}
public function getFormId() {
return 'advagg_ext_minify_settings';
}
protected function getEditableConfigNames() {
return [
'advagg_ext_minify.settings',
];
}
public function buildForm(array $form, FormStateInterface $form_state) {
$form = [];
$this
->generateForm($form, [
'css',
$this
->t('CSS'),
]);
$this
->generateForm($form, [
'js',
$this
->t('JavaScript'),
]);
return parent::buildForm($form, $form_state);
}
private function generateForm(array &$form, array $params) {
$form[$params[0]] = [
'#type' => 'fieldset',
'#title' => $this
->t('@title', [
'@title' => $params[1],
]),
];
$form[$params[0]]['cmd'] = [
'#type' => 'fieldset',
'#title' => $this
->t('Command Line'),
];
$description = $this
->t('{%CWD%} = \\Drupal::root(). <br /> {%IN%} = input file. <br /> {%IN_URL_ENC%} = url pointing to the input file that has been url encoded. <br /> {%OUT%} = output file. <br /><br />');
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
$description .= ' ' . $this
->t('Example using the <a href="@link1">Microsoft Ajax Minifier</a>. <p><code>@code1</code></p>', [
'@link1' => 'http://ajaxmin.codeplex.com/',
'@code1' => 'AjaxMinifier {%IN%} -o {%OUT%}',
]);
}
if ($params[0] === 'js') {
$description .= ' ' . $this
->t('Example using the <a href="@link1">Google Closure Compiler</a>. <p><code>@code1</code></p>', [
'@link1' => 'https://developers.google.com/closure/compiler/docs/gettingstarted_app',
'@code1' => 'java -jar compiler.jar --js {%CWD%}/{%IN%} --js_output_file {%OUT%}',
]);
$description .= ' ' . $this
->t('Example using curl to minify via the <a href="@link1">Online Google Closure Compiler</a>. <p><code>@code1</code></p>', [
'@link1' => 'https://developers.google.com/closure/compiler/docs/api-ref',
'@code1' => 'curl -o {%OUT%} -d output_info=compiled_code -d code_url={%IN_URL_ENC%} http://closure-compiler.appspot.com/compile',
]);
}
if ($params[0] === 'css') {
$description .= ' ' . $this
->t('Example using the <a href="@link1">YUI Compressor</a>. <p><code>@code1</code></p>', [
'@link1' => 'http://yui.github.io/yuicompressor/',
'@code1' => 'java -jar yuicompressor-x.y.z.jar --type css --line-break 4096 {%CWD%}/{%IN%} -o {%OUT%}',
]);
$description .= ' ' . $this
->t('Example using curl to minify via an online <a href="@link1">CSS Minifier</a>. <p><code>@code1</code></p>', [
'@link1' => 'http://cnvyr.io/',
'@code1' => 'curl -o {%OUT%} -F \'files0=@{%IN%}\' http://srv.cnvyr.io/v1?min=css',
]);
}
$form[$params[0]]['cmd'][$params[0] . '_cmd'] = [
'#type' => 'textfield',
'#title' => $this
->t('Command to run'),
'#default_value' => $this
->config('advagg_ext_minify.settings')
->get($params[0] . '_cmd'),
'#description' => $description,
];
}
public function submitForm(array &$form, FormStateInterface $form_state) {
$this
->config('advagg_ext_minify.settings')
->set('js_cmd', $form_state
->getValue('js_cmd'))
->set('css_cmd', $form_state
->getValue('css_cmd'))
->save();
parent::submitForm($form, $form_state);
$this->cssCollectionOptimizer
->deleteAll();
$this->jsCollectionOptimizer
->deleteAll();
Cache::invalidateTags([
'library_info',
'advagg_css',
'advagg_js',
]);
}
}