mirror of
https://ghproxy.net/https://github.com/AlxMedia/magaziner.git
synced 2025-08-28 09:43:30 +08:00
Initial commit
This commit is contained in:
commit
b0607606ae
369 changed files with 85494 additions and 0 deletions
43
functions/kirki/controls/views/generic.php
Normal file
43
functions/kirki/controls/views/generic.php
Normal file
|
@ -0,0 +1,43 @@
|
|||
<?php
|
||||
/**
|
||||
* Customizer controls underscore.js template.
|
||||
*
|
||||
* @package Kirki
|
||||
* @subpackage Controls
|
||||
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
||||
* @license https://opensource.org/licenses/MIT
|
||||
* @since 3.0.17
|
||||
*/
|
||||
|
||||
?>
|
||||
<#
|
||||
element = ( data.choices.element ) ? data.choices.element : 'input';
|
||||
data = _.defaults( data, {
|
||||
label: '',
|
||||
description: '',
|
||||
inputAttrs: '',
|
||||
value: '',
|
||||
'data-id': '',
|
||||
choices: {}
|
||||
} );
|
||||
#>
|
||||
<div class="kirki-input-container" data-id="{{ data.id }}">
|
||||
<label>
|
||||
<# if ( data.label ) { #>
|
||||
<span class="customize-control-title">{{{ data.label }}}</span>
|
||||
<# } #>
|
||||
<# if ( data.description ) { #>
|
||||
<span class="description customize-control-description">{{{ data.description }}}</span>
|
||||
<# } #>
|
||||
<div class="customize-control-content">
|
||||
<{{ element }}
|
||||
data-id="{{ data['data-id'] }}"
|
||||
{{{ data.inputAttrs }}}
|
||||
value="{{ data.value }}"
|
||||
<# _.each( data.choices, function( val, key ) { #>
|
||||
{{ key }}="{{ val }}"
|
||||
<# } ); #>
|
||||
<# if ( data.choices.content ) { #>>{{{ data.choices.content }}}</{{ element }}><# } else { #>/><# } #>
|
||||
</div>
|
||||
</label>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue