Same name and namespace in other branches
  1. 6.0.x advagg_ext_minify/src/Form/SettingsForm.php \Drupal\advagg_ext_minify\Form\SettingsForm::generateForm() 1 commentaire
  2. 8.x-2.x advagg_ext_minify/src/Form/SettingsForm.php \Drupal\advagg_ext_minify\Form\SettingsForm::generateForm() 1 commentaire
  3. 8.x-3.x advagg_ext_minify/src/Form/SettingsForm.php \Drupal\advagg_ext_minify\Form\SettingsForm::generateForm() 1 commentaire
  4. 8.x-4.x advagg_ext_minify/src/Form/SettingsForm.php \Drupal\advagg_ext_minify\Form\SettingsForm::generateForm() 1 commentaire

Generate a form for css or js depending on the input.

Paramètres

array $form: The form array to add to.

array $params: An array where: key 0 is the machine name. key 1 is the title.

1 call to SettingsForm::generateForm()
SettingsForm::buildForm dans advagg_ext_minify/src/Form/SettingsForm.php

Fichier

advagg_ext_minify/src/Form/SettingsForm.php, line 69

Classe

SettingsForm
Configure advagg_ext_minify settings for this site.

Namespace

Drupal\advagg_ext_minify\Form

Code

private function generateForm(array &$form, array $params) {
    $form[$params[0]] = [
        '#type' => 'fieldset',
        '#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,
    ];
    $form[$params[0]]['cmd'][$params[0] . '_enabled'] = [
        '#type' => 'checkbox',
        '#title' => $this->t('Enable external @type minification', [
            '@type' => $params[1],
        ]),
        '#default_value' => $this->config('advagg_ext_minify.settings')
            ->get($params[0] . '_cmd'),
    ];
}