PATH:
var
/
www
/
vhosts
/
sandbox.dos-group.com
/
httpdocs
/
stadlercattaneo
/
wp-content
/
plugins
/
LayerSlider
/
views
<?php // Get all skins $skins = array_map('basename', glob(LS_ROOT_PATH . '/static/skins/*', GLOB_ONLYDIR)); $skin = !empty($_GET['skin']) ? $_GET['skin'] : $skins[0]; $folder = LS_ROOT_PATH.'/static/skins/'.$skin; $file = LS_ROOT_PATH.'/static/skins/'.$skin.'/skin.css'; // Get screen options $lsScreenOptions = get_option('ls-screen-options', '0'); $lsScreenOptions = ($lsScreenOptions == 0) ? array() : $lsScreenOptions; $lsScreenOptions = is_array($lsScreenOptions) ? $lsScreenOptions : unserialize($lsScreenOptions); // Defaults if(!isset($lsScreenOptions['showTooltips'])) { $lsScreenOptions['showTooltips'] = 'true'; } ?> <div id="ls-screen-options" class="metabox-prefs hidden"> <div id="screen-options-wrap" class="hidden"> <form id="ls-screen-options-form" action="<?php echo $_SERVER['REQUEST_URI']?>" method="post"> <h5><?php _e('Show on screen', 'LayerSlider') ?></h5> <label> <input type="checkbox" name="showTooltips"<?php echo $lsScreenOptions['showTooltips'] == 'true' ? ' checked="checked"' : ''?>> <?php _e('Tooltips', 'LayerSlider') ?> </label> </form> </div> <div id="screen-options-link-wrap" class="hide-if-no-js screen-meta-toggle"> <a href="#screen-options-wrap" id="show-settings-link" class="show-settings"><?php _e('Screen Options', 'LayerSlider') ?></a> </div> </div> <div class="wrap"> <!-- Page title --> <h2> <?php _e('LayerSlider Skin Editor', 'LayerSlider') ?> <a href="?page=layerslider" class="add-new-h2"><?php _e('Back to the list', 'LayerSlider') ?></a> </h2> <!-- Error messages --> <?php if(isset($_GET['edited'])) : ?> <div class="ls-notification changed"> <div><?php _e('Your changes has been saved!', 'LayerSlider') ?></div> </div> <?php endif; ?> <!-- End of error messages --> <!-- Editor box --> <form action="<?php echo $_SERVER['REQUEST_URI'] ?>" method="post" class="ls-box ls-skin-editor-box"> <input type="hidden" name="ls-user-skins" value="1"> <?php wp_nonce_field('save-user-skin'); ?> <h3 class="header medium"> <?php _e('Skin Editor', 'LayerSlider') ?> <figure><span>|</span><?php _e('Ctrl+Q to fold/unfold a block', 'LayerSlider') ?></figure> <p> <span><?php _e('Choose a skin:', 'LayerSlider') ?></span> <select name="skin" class="ls-skin-editor-select"> <?php foreach($skins as $item) : ?> <?php if($item == $skin) { ?> <option selected="selected"><?php echo $item ?></option> <?php } else { ?> <option><?php echo $item ?></option> <?php } ?> <?php endforeach; ?> </select> </p> </h3> <p class="inner"><?php _e('Built-in skins will be overwritten by plugin updates. Making changes should be done through the Custom Styles Editor.', 'LayerSlider') ?></p> <div class="inner"> <textarea rows="10" cols="50" name="contents" class="ls-codemirror"><?php echo file_get_contents($file); ?></textarea> <p class="footer"> <?php if(!is_writable($folder)) { ?> <?php _e('You need to make this file writable before you can save your changes. See the <a href="http://codex.wordpress.org/Changing_File_Permissions" target="_blank">Codex</a> for more information.', 'LayerSlider') ?> <?php } else { ?> <button class="button-primary"><?php _e('Save changes', 'LayerSlider') ?></button> <?php _e("Modifying a skin with bad code can break your sliders' appearance. Changes cannot be reverted after saving.", "LayerSlider") ?> <?php } ?> </p> </div> </form> </div> <script type="text/javascript"> // Screen options var lsScreenOptions = <?php echo json_encode($lsScreenOptions) ?>; </script>
[-] slider_list.php
[open]
[-] slider_edit.php
[open]
[+]
..
[-] transition_builder.php
[open]
[-] slider_edit_sample.php
[open]
[-] slider_edit_posts.php
[open]
[-] skin_editor.php
[open]
[-] style_editor.php
[open]
[-] slider_edit_settings.php
[open]