Your IP : 216.73.216.43


Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-install/Resources/Private/Partials/Settings/Presets/
Upload File :
Current File : /var/www/surf/TYPO3/vendor/typo3/cms-install/Resources/Private/Partials/Settings/Presets/Image.html

<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">

<div class="panel panel-default">
    <div class="panel-heading" role="tab" id="headingFour">
        <h4 class="panel-title">
            <a role="button" data-bs-toggle="collapse" data-bs-parent="#accordion" href="#collapseFour" aria-expanded="true" aria-controls="collapseFour" class="collapsed">
                <span class="caret"></span>
                Image handling settings
            </a>
        </h4>
    </div>
    <div id="collapseFour" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingFour">
        <div class="panel-body">
            <p>
                Advanced image handling in TYPO3 CMS uses the command line tool
                GraphicsMagick or ImageMagick. The tool needs to be configured
                correctly depending on the version that is available on the system.
            </p>
            <p>
                This module detects the available image handling versions and sets
                the system accordingly. If everything is correctly set up the image
                tests of the install tool section "Test setup" should be fine.
            </p>

            <p>
                If ImageMagick or GraphicsMagick executables are located in an unusual place,
                set the absolute directory name here.
            </p>
            <div class="row mb-3">
                <div class="col-sm-12">
                    <div class="input-group">
                        <input
                                type="text"
                                name="install[values][{feature.name}][additionalSearchPath]"
                                value="{feature.additionalSearchPath}"
                                class="form-control t3js-presets-image-executable"
                                {f:if(condition: '!{isWritable}', then: 'disabled')}
                        />
                        <button
                            class="btn btn-default t3js-presets-image-executable-trigger"
                            type="button"
                            {f:if(condition: '!{isWritable}', then: 'disabled')}
                        >
                            Find executables in this directory
                        </button>
                    </div>
                </div>
            </div>

            <f:for each="{feature.presetsOrderedByPriority}" as="preset">
                <f:render partial="Settings/Presets/{feature.name}/{preset.name}" arguments="{_all}" />
            </f:for>
        </div>
    </div>
</div>

</html>