Seditio Source
Root |
./othercms/xenForo 2.2.8/src/XF/Install/_templates/install_step4.php
<?php
    class_exists
('XF\Install\App', false) || die('Invalid');

   
$templater->setTitle('Setup options');
?>

<form method="post" action="index.php?install/step4b" class="block">
    <div class="block-container">
        <div class="block-body">
            <?php foreach ($options AS $option) { ?>
               <dl class="formRow formRow--input">
                    <dt><label class="formRow-label" for="ctrl_<?php echo $option->option_id ?>"><?php echo $option->MasterTitle->phrase_text; ?></label></dt>
                    <dd>
                        <input type="text" name="options[<?php echo $option->option_id; ?>]" value="<?php echo $option->option_value; ?>" class="input" id="ctrl_<?php echo $option->option_id ?>" />
                    </dd>
                </dl>
            <?php } ?>

            <hr class="formRowSep" />

            <dl class="formRow">
                <dt></dt>
                <dd>
                    <ul class="inputChoices">
                        <li class="inputChoices-choice">
                            <label class="iconic iconic--checkbox iconic--labelled">
                                <input type="checkbox" name="options[collectServerStats][enabled]" value="1" checked><i aria-hidden="true"></i> Send anonymous usage statistics
                            </label>
                        </li>
                    </ul>

                    <div class="formRow-explain">
                        XenForo would like to collect some anonymous statistics including information about PHP, MySQL and your XenForo installation.<br />
                        <br />
                        If enabled, any data collected will be stored anonymously and will not include any user data.
                    </div>

                    <input type="hidden" name="options[collectServerStats][configured]" value="1" />
                </dd>
            </dl>
        </div>
        <dl class="formRow formSubmitRow">
            <dt></dt>
            <dd>
                <div class="formSubmitRow-main">
                    <div class="formSubmitRow-bar"></div>
                    <div class="formSubmitRow-controls">
                        <button accesskey="s" class="button button--primary button--icon button--icon--save">
                            <span class="button-text">Setup options</span>
                        </button>
                    </div>
                </div>
            </dd>
        </dl>
    </div>

    <?php echo $templater->fnCsrfInput($templater, $null); ?>
</form>