PATH:
home
/
lab2454c
/
archfort.com
/
wp-content
/
plugins
/
update-urls
/
lite
/
includes
/
Admin
/
Templates
<?php $nav_menus['search'] = array( 'title' => __( 'Search / Replace', 'update-urls' ), 'link' => add_query_arg( array( 'tab' => 'search' ), admin_url( 'tools.php?page=update-urls' ) ), ); $nav_menus['awesome_products'] = array( 'title' => __( 'Other Awesome Products', 'update-urls' ), 'link' => add_query_arg( array( 'tab' => 'awesome_products' ), admin_url( 'tools.php?page=update-urls' ) ) ); $tab = ! empty( $_GET['tab'] ) ? \Kaizencoders\Update_Urls\Helper::clean( $_GET['tab'] ) : 'search'; ?> <div class="wrap"> <h2>Update URLs</h2> <h2 class="nav-tab-wrapper"> <?php foreach ( $nav_menus as $id => $menu ) { ?> <a href="<?php echo $menu['link']; ?>" class="nav-tab wpsf-tab-link <?php if ( $id === $tab ) { echo "nav-tab-active"; } ?>"> <?php echo $menu['title']; ?> </a> <?php } ?> </h2> <div class="bg-white"> <?php if('search' === $tab) { include_once KC_UU_ADMIN_TEMPLATES_DIR . '/search-replace.php'; } elseif ('awesome_products' === $tab) { include_once KC_UU_ADMIN_TEMPLATES_DIR . '/other-products.php'; } ?> </div> </div>
[+]
..
[-] update-urls.php
[edit]
[-] other-products.php
[edit]
[-] search-replace.php
[edit]