forked from ZwiiCMS-Team/ZwiiCampus
85 lines
2.4 KiB
PHP
85 lines
2.4 KiB
PHP
<?php echo template::formOpen('fontAddForm'); ?>
|
|
<div class="row">
|
|
<div class="col1">
|
|
<?php echo template::button('fontAddBack', [
|
|
'class' => 'buttonGrey',
|
|
'href' => helper::baseUrl() . 'theme/font',
|
|
'value' => template::ico('left')
|
|
]); ?>
|
|
</div>
|
|
<div class="col1">
|
|
<?php /* echo template::button('fontAddHelp', [
|
|
'href' => 'https://doc.zwiicms.fr/fontes#add',
|
|
'target' => '_blank',
|
|
'value' => template::ico('help'),
|
|
'class' => 'buttonHelp'
|
|
]); */ ?>
|
|
</div>
|
|
<div class="col2 offset8">
|
|
<?php echo template::submit('fontAddPublish', [
|
|
'value' => 'Valider',
|
|
'uniqueSubmission' => true
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col12">
|
|
<div class="block">
|
|
<h4><?php echo helper::translate('Identité de la fonte'); ?>
|
|
</h4>
|
|
<div class="row">
|
|
<div class="col6">
|
|
<?php echo template::checkbox('fontAddFontImported', true, 'Fonte en ligne', [
|
|
'checked' => true
|
|
]); ?>
|
|
</div>
|
|
<div class="col6">
|
|
<?php echo template::checkbox('fontAddFontFile', true, 'Fonte installée', []); ?>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col6">
|
|
<?php echo template::text('fontAddFontId', [
|
|
'autocomplete' => 'off',
|
|
'label' => 'Identifiant (sans espace ni majuscule)',
|
|
'placeholder' => 'big-marker-extrude'
|
|
|
|
]); ?>
|
|
</div>
|
|
<div class="col6">
|
|
<?php echo template::text('fontAddFontName', [
|
|
'autocomplete' => 'off',
|
|
'label' => 'Nom',
|
|
'placeholder' => 'Big Marker Extrude'
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col12">
|
|
<?php echo template::text('fontAddFontFamilyName', [
|
|
'autocomplete' => 'off',
|
|
'label' => 'Famille',
|
|
'placeholder' => "'Big Marker Extrude', sans-serif"
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
<div class="row" id="containerFontAddFile">
|
|
<div class="col12">
|
|
<?php echo template::file('fontAddFile', [
|
|
'language' => $this->getData(['user', $this->getUser('id'), 'language']),
|
|
'label' => 'Fichier de fonte (Format WOFF)'
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
<div class="row" id="containerFontAddUrl">
|
|
<div class="col12">
|
|
<?php echo template::text('fontAddUrl', [
|
|
'label' => 'Url du fichier de fonte',
|
|
'placeholder' => 'https://fonts.cdnfonts.com/css/big-marker-extrude'
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php echo template::formClose(); ?>
|