PluginProbe
WPCasa – Real Estate for WordPress / 1.5.3
WPCasa – Real Estate for WordPress v1.5.3
1.5.5 1.5.4 1.5.3 1.5.2 1.5.1 1.5.1.1 trunk 1.2.0 1.2.1 1.2.10 1.2.10.1 1.2.11 1.2.12 1.2.13 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.2.9.1 1.2.9.2 1.3.0 All 31 releases
wpcasa / includes / admin / views / sidebar.php

sidebar.php in WPCasa – Real Estate for WordPress 1.5.3, at includes/admin/views/sidebar.php

20 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>
2
3 <div class="wpsight-admin-sidebar-back"></div>
4 <div class="wpsight-admin-sidebar">
5
6 <div class="wpsight-admin-intro-box">
7 <div class="wpsight-admin-ui-image">
8 <img src="<?php echo esc_url( WPSIGHT_PLUGIN_URL . '/assets/img/wpcasa-admin-logo.jpg' ); ?>" />
9 </div>
10 </div>
11
12 <div class="wpsight-admin-nav nav-tab-wrapper">
13 <a href="#settings-overview" id="settings-overview-tab" class="nav-tab"><span class="dashicons dashicons-laptop"></span><?php echo esc_html__( 'Overview', 'wpcasa' ); ?></a>
14 <?php
15 foreach ( $settings as $key => $section )
16 echo '<a href="#settings-' . esc_attr( sanitize_title( $key ) ) . '" id="settings-' . esc_attr( sanitize_title( $key ) ) . '-tab" class="nav-tab">' . wp_kses( $section[0], array( 'span' => array( 'class' => array() ) ) ) . '</a>';
17 ?>
18 <a href="#settings-tools" id="settings-tools-tab" class="nav-tab"><span class="dashicons dashicons-admin-tools"></span><?php echo esc_html__( 'Tools', 'wpcasa' ); ?></a>
19 </div>
20 </div>