TYPO3 v15 dev-main snapshot ()
This commit is contained in:
@@ -0,0 +1,85 @@
|
||||
<html
|
||||
xmlns:core="http://typo3.org/ns/TYPO3/CMS/Core/ViewHelpers"
|
||||
xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
|
||||
data-namespace-typo3-fluid="true"
|
||||
>
|
||||
<div class="form-section">
|
||||
|
||||
<h4>
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeadvanc_files"/>
|
||||
</h4>
|
||||
<div class="form-group">
|
||||
<div class="form-check">
|
||||
<input type="hidden" name="tx_impexp[saveFilesOutsideExportFile]" value="" />
|
||||
<input
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
id="saveFilesOutsideExportFile"
|
||||
name="tx_impexp[saveFilesOutsideExportFile]"
|
||||
value="1"
|
||||
{f:if(condition:'{inData.saveFilesOutsideExportFile} == 1', then:'checked="checked"')}
|
||||
/>
|
||||
<label class="form-check-label" for="saveFilesOutsideExportFile">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeadvanc_saveFilesOutsideExportFile"/>
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeadvanc_saveFilesOutsideExportFile_limit"/>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="form-section">
|
||||
|
||||
<h4>
|
||||
<f:translate key="makeadvanc_siteConfigurations" domain="impexp.messages"/>
|
||||
</h4>
|
||||
<div class="form-group">
|
||||
<div class="form-check">
|
||||
<input type="hidden" name="tx_impexp[includeSiteConfigurations]" value="" />
|
||||
<input
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
id="checkIncludeSiteConfigurations"
|
||||
name="tx_impexp[includeSiteConfigurations]"
|
||||
value="1"
|
||||
{f:if(condition:'{inData.includeSiteConfigurations} == 1', then:'checked="checked"')}
|
||||
{f:if(condition:'!{isAdmin}', then:'disabled="disabled"')}
|
||||
/>
|
||||
<label class="form-check-label" for="checkIncludeSiteConfigurations">
|
||||
<f:translate key="makeadvanc_includeSiteConfigurations" domain="impexp.messages"/>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="form-section">
|
||||
|
||||
<h4>
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeadvanc_extensionDependencies"/>
|
||||
</h4>
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="extension_dep">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeadvanc_selectExtensionsThatThe"/>
|
||||
</label>
|
||||
<select
|
||||
id="extension_dep"
|
||||
class="form-select"
|
||||
name="tx_impexp[extension_dep][]"
|
||||
multiple="multiple"
|
||||
size="{f:if(condition: '{tableSelectOptions -> f:count()} > 9', then: '10', else: '5')}"
|
||||
>
|
||||
<f:for each="{extensions}" as="optionLabel" key="optionValue">
|
||||
<option value="{optionValue}" {f:contains(value: optionValue, subject: inData.extension_dep, then: 'selected="selected"')}>{optionLabel}</option>
|
||||
</f:for>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<button
|
||||
type="submit"
|
||||
class="btn btn-default"
|
||||
>
|
||||
<core:icon identifier="actions-refresh" size="small" />
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_update"/>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@@ -0,0 +1,227 @@
|
||||
<html
|
||||
xmlns:core="http://typo3.org/ns/TYPO3/CMS/Core/ViewHelpers"
|
||||
xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
|
||||
data-namespace-typo3-fluid="true"
|
||||
>
|
||||
|
||||
<div class="form-section">
|
||||
|
||||
<h3 class="form-section-headline">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeconfig_exportPagetreeConfiguration" />
|
||||
</h3>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm-2">
|
||||
<label class="form-label">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeconfig_pageId" />
|
||||
</label>
|
||||
</div>
|
||||
<div class="col-sm-10">
|
||||
{inData.pagetree.id}
|
||||
<input type="hidden" name="tx_impexp[pagetree][id]" value="{inData.pagetree.id}" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm-2">
|
||||
<label class="form-label">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeconfig_tree" />
|
||||
</label>
|
||||
</div>
|
||||
<div class="col-sm-10">
|
||||
<f:if condition="{treeHTML}">
|
||||
<f:then>
|
||||
<f:format.raw>{treeHTML}</f:format.raw>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeconfig_noTreeExportedOnly" />
|
||||
</f:else>
|
||||
</f:if>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="pagetreeLevels">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeconfig_levels" />
|
||||
</label>
|
||||
<select
|
||||
id="pagetreeLevels"
|
||||
class="form-select"
|
||||
name="tx_impexp[pagetree][levels]"
|
||||
>
|
||||
<f:for each="{levelSelectOptions}" as="optionLabel" key="optionValue">
|
||||
<option value="{optionValue}" {f:if(condition:'{optionValue} == {inData.pagetree.levels}', then:'selected="selected"')}>{optionLabel}</option>
|
||||
</f:for>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="pagetreeTables">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeconfig_includeTables"/>
|
||||
</label>
|
||||
<select
|
||||
id="pagetreeTables"
|
||||
class="form-select"
|
||||
name="tx_impexp[pagetree][tables][]"
|
||||
multiple="multiple"
|
||||
size="{f:if(condition: '{tableSelectOptions -> f:count()} > 9', then: '10', else: '5')}"
|
||||
>
|
||||
<f:for each="{tableSelectOptions}" as="optionLabel" key="optionValue">
|
||||
<option value="{optionValue}" {f:contains(value: optionValue, subject: inData.pagetree.tables, then: 'selected="selected"')}>{optionLabel}</option>
|
||||
</f:for>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<f:if condition="{records -> f:count()} > 0">
|
||||
<h4>
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeconfig_exportSingleRecord"/>
|
||||
</h4>
|
||||
<div class="row">
|
||||
<div class="col-sm-2">
|
||||
<label>
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeconfig_record"/>
|
||||
</label>
|
||||
</div>
|
||||
<div class="col-sm-10">
|
||||
<f:for each="{records}" as="record" iteration="iterator">
|
||||
<f:format.raw>{record.icon}</f:format.raw>
|
||||
{record.title}
|
||||
<input type="hidden" name="tx_impexp[record][]" value="{record.tableName}:{record.recordUid}" />
|
||||
<f:if condition="{iterator.isLast}"><f:else><br></f:else></f:if>
|
||||
</f:for>
|
||||
</div>
|
||||
</div>
|
||||
</f:if>
|
||||
|
||||
<f:if condition="{tableList -> f:count()} > 0">
|
||||
<h4>
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeconfig_exportTablesFromPages"/>
|
||||
</h4>
|
||||
<div class="row">
|
||||
<div class="col-sm-2">
|
||||
<label>
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeconfig_tablePids"/>
|
||||
</label>
|
||||
</div>
|
||||
<div class="col-sm-10">
|
||||
<f:for each="{tableList}" as="table">
|
||||
<f:format.raw>{table.iconAndTitle}</f:format.raw>
|
||||
<input type="hidden" name="tx_impexp[list][]" value="{table.reference}" />
|
||||
<br>
|
||||
</f:for>
|
||||
</div>
|
||||
</div>
|
||||
</f:if>
|
||||
|
||||
<h4>
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeconfig_relationsAndExclusions"/>
|
||||
</h4>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="externalRefTables">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeconfig_includeRelationsToTables"/>
|
||||
</label>
|
||||
<select
|
||||
id="externalRefTables"
|
||||
class="form-select"
|
||||
name="tx_impexp[external_ref][tables][]"
|
||||
multiple="multiple"
|
||||
size="{f:if(condition: '{externalReferenceTableSelectOptions -> f:count()} > 9', then: '10', else: '5')}"
|
||||
>
|
||||
<f:for each="{externalReferenceTableSelectOptions}" as="optionLabel" key="optionValue">
|
||||
<option value="{optionValue}" {f:contains(value: optionValue, subject: inData.external_ref.tables, then: 'selected="selected"')}>{optionLabel}</option>
|
||||
</f:for>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="externalStaticTables">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeconfig_useStaticRelationsFor"/>
|
||||
</label>
|
||||
<select
|
||||
id="externalStaticTables"
|
||||
class="form-select"
|
||||
name="tx_impexp[external_static][tables][]"
|
||||
multiple="multiple"
|
||||
size="{f:if(condition: '{externalStaticTableSelectOptions -> f:count()} > 9', then: '10', else: '5')}"
|
||||
>
|
||||
<f:for each="{externalStaticTableSelectOptions}" as="optionLabel" key="optionValue">
|
||||
<option value="{optionValue}" {f:contains(value: optionValue, subject: inData.external_static.tables, then: 'selected="selected"')}>{optionLabel}</option>
|
||||
</f:for>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<div class="form-check">
|
||||
<input type="hidden" name="tx_impexp[showStaticRelations]" value="" />
|
||||
<input
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
id="checkShowStaticRelations"
|
||||
name="tx_impexp[showStaticRelations]"
|
||||
value="1"
|
||||
{f:if(condition:'{inData.showStaticRelations} == 1', then:'checked="checked"')}
|
||||
/>
|
||||
<label class="form-check-label" for="checkShowStaticRelations">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeconfig_showStaticRelations"/>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="form-label">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeconfig_excludeElements"/>
|
||||
</label>
|
||||
<f:if condition="{inData.exclude -> f:count()} > 0">
|
||||
<f:then>
|
||||
<p class="form-description">
|
||||
<f:for each="{inData.exclude}" key="key" as="value" iteration="index">
|
||||
<input type="hidden" name="tx_impexp[exclude][{key}]" value="1" />
|
||||
<f:if condition="{index.isLast}">
|
||||
<f:then>{key}</f:then>
|
||||
<f:else>{key},</f:else>
|
||||
</f:if>
|
||||
</f:for>
|
||||
</p>
|
||||
<div class="form-check">
|
||||
<input type="checkbox" name="tx_impexp[resetExclude]" id="checkResetExclude" value="1" class="form-check-input" />
|
||||
<label for="checkResetExclude" class="form-check-label">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeconfig_clearAllManualExclusions" />
|
||||
</label>
|
||||
</div>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<p class="form-description">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeconfig_noManuallyExcludedElementsYet"/>
|
||||
</p>
|
||||
</f:else>
|
||||
</f:if>
|
||||
<div class="form-check">
|
||||
<input type="hidden" name="tx_impexp[excludeDisabled]" value="" />
|
||||
<input
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
id="checkExcludeDisabled"
|
||||
name="tx_impexp[excludeDisabled]"
|
||||
value="1"
|
||||
{f:if(condition:'{inData.excludeDisabled} == 1', then:'checked="checked"')}
|
||||
/>
|
||||
<label for="checkExcludeDisabled" class="form-check-label">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeconfig_excludeDisabledElements" />
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<button
|
||||
type="submit"
|
||||
class="btn btn-default"
|
||||
>
|
||||
<core:icon identifier="actions-refresh" size="small" />
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makeadvanc_update" />
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,205 @@
|
||||
<html
|
||||
xmlns:core="http://typo3.org/ns/TYPO3/CMS/Core/ViewHelpers"
|
||||
xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
|
||||
data-namespace-typo3-fluid="true"
|
||||
>
|
||||
|
||||
<div class="form-section">
|
||||
|
||||
<h3 class="form-section-headline">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_presets" />
|
||||
</h3>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="preset-select">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_selectPreset" />
|
||||
</label>
|
||||
<select class="form-select" id="preset-select" name="preset[select]">
|
||||
<f:for each="{presetSelectOptions}" as="optionLabel" key="optionValue">
|
||||
<option value="{optionValue}">{optionLabel}</option>
|
||||
</f:for>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<input type="hidden" id="t3js-submit-field" name="not-set" value="1">
|
||||
<button
|
||||
type="submit"
|
||||
class="btn btn-default"
|
||||
name="preset[load]"
|
||||
value="1"
|
||||
>
|
||||
<core:icon identifier="actions-upload" size="small" />
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_load" />
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
name="preset[save]"
|
||||
class="btn btn-default t3js-confirm-trigger"
|
||||
data-title="{f:translate(key: 'LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:pleaseConfirm')}"
|
||||
data-message="{f:translate(key: 'LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_areYouSure')}"
|
||||
value="1"
|
||||
>
|
||||
<core:icon identifier="actions-save" size="small" />
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_save" />
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
name="preset[delete]"
|
||||
class="btn btn-default t3js-confirm-trigger"
|
||||
data-title="{f:translate(key: 'LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:pleaseConfirm')}"
|
||||
data-message="{f:translate(key: 'LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_areYouSure')}"
|
||||
value="1"
|
||||
>
|
||||
<core:icon identifier="actions-delete" size="small" />
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_delete" />
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
name="preset[merge]"
|
||||
class="btn btn-default t3js-confirm-trigger"
|
||||
data-title="{f:translate(key: 'LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:pleaseConfirm')}"
|
||||
data-message="{f:translate(key: 'LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_areYouSure')}"
|
||||
value="1"
|
||||
>
|
||||
<core:icon identifier="actions-code-merge" size="small" />
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_merge" />
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="form-section">
|
||||
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="preset-title">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_titleOfNewPreset" />
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
name="tx_impexp[preset][title]"
|
||||
class="form-control"
|
||||
id="preset-title"
|
||||
value="{inData.preset.title}"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<div class="form-check">
|
||||
<input type="hidden" name="tx_impexp[preset][public]" value="" />
|
||||
<input
|
||||
type="checkbox"
|
||||
name="tx_impexp[preset][public]"
|
||||
class="form-check-input"
|
||||
id="checkPresetPublic"
|
||||
value="1"
|
||||
{f:if(condition:'{inData.preset.public} == 1', then:'checked="checked"')}
|
||||
/>
|
||||
<label class="form-check-label" for="checkPresetPublic">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_public"/>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="form-section">
|
||||
|
||||
<h3 class="form-section-headline">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_outputOptions"/>
|
||||
</h3>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="meta-title">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_title"/>
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
name="tx_impexp[meta][title]"
|
||||
class="form-control"
|
||||
id="meta-title"
|
||||
value="{inData.meta.title}"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="meta-description">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_description"/>
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
name="tx_impexp[meta][description]"
|
||||
class="form-control"
|
||||
id="meta-description"
|
||||
value="{inData.meta.description}"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="meta-notes">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_notes"/>
|
||||
</label>
|
||||
<textarea
|
||||
name="tx_impexp[meta][notes]"
|
||||
class="form-control"
|
||||
id="meta-notes"
|
||||
>{inData.meta.notes}</textarea>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="tx_impexp_filetype">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_fileFormat"/>
|
||||
</label>
|
||||
<select
|
||||
class="form-select"
|
||||
name="tx_impexp[filetype]"
|
||||
id="tx_impexp_filetype"
|
||||
>
|
||||
<f:for each="{filetypeSelectOptions}" as="optionLabel" key="optionValue">
|
||||
<option value="{optionValue}" {f:if(condition:'{optionValue} == {inData.filetype}', then:'selected="selected"')}>{optionLabel}</option>
|
||||
</f:for>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="impexp-filename">
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_filenameSavedInS" arguments="{0: saveFolder}"/>
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
name="tx_impexp[filename]"
|
||||
value="{inData.filename}"
|
||||
class="form-control"
|
||||
id="impexp-filename"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<button
|
||||
type="submit"
|
||||
class="btn btn-default"
|
||||
>
|
||||
<core:icon identifier="actions-refresh" size="small" />
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_update" />
|
||||
</button>
|
||||
<button
|
||||
type="submit"
|
||||
name="tx_impexp[download_export]"
|
||||
class="btn btn-default"
|
||||
value="1"
|
||||
>
|
||||
<core:icon identifier="actions-download" size="small" />
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:makesavefo_downloadExport" />
|
||||
</button>
|
||||
<button
|
||||
type="submit"
|
||||
name="tx_impexp[save_export]"
|
||||
class="btn btn-default"
|
||||
value="1"
|
||||
>
|
||||
<core:icon identifier="actions-file-csv-download" size="small" />
|
||||
<f:translate key="LLL:EXT:impexp/Resources/Private/Language/locallang.xlf:importdata_saveToFilename" />
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user