HEX
Server: Apache
System: Linux vps28526 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
User: heewonvps_17 (6705002)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/heewonvps_17/drug-injury-lawyer.com/wp-content/themes/master/functions.php
<?php
/**
 * Set the content width based on the theme's design and stylesheet.
 *
 * Used to set the width of images and content. Should be equal to the width the theme
 * is designed for, generally via the style.css stylesheet.
 */
if ( ! isset( $content_width ) )
	$content_width = 640;

	
/**
 * Sets up the default pages that will be added upon the initial installation
 *
 * @since Master Theme 1.0
 */
add_action('blog_activation','my_default_pages');

function my_default_pages(){
    $default_pages = array('Home','Sitemap','Disclaimer','Contact Us','Thank You');
    $existing_pages = get_pages();
    $contact_id = 0;

    foreach($existing_pages as $page){
        $temp[] = $page->post_title;
        }

    $pages_to_create = array_diff($default_pages,$temp);
 
    foreach($pages_to_create as $new_page_title){

            // Create post object
            $my_post = array();
            $my_post['post_title'] = $new_page_title;
            $my_post['post_content'] = 'This is my '.$new_page_title.' page.';
            $my_post['post_status'] = 'publish';
            $my_post['post_type'] = 'page';
            
			if($new_page_title == 'Home') {
				$my_post['post_content'] = '
<p class="page_title">Page Title</p>
<h1>This is a sample of an H1</h1>
<h2>This is a sample of an H2</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<ul>
<li>This is an example of a list item.</li>
<li>This is an example of a list item.</li>
<li>This is an example of a list item.</li>
</ul>
<h3>This is a sample of an H3</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
				';
			}

			if($new_page_title == 'Sitemap') {
				$my_post['post_content'] = '[pagelist]';
			}
			
			if($new_page_title == 'Disclaimer') {
				$my_post['post_content'] = 'The information you obtain at this site is not, nor is it intended to be, legal advice. You should consult an attorney for advice regarding your individual situation. We invite you to contact us and welcome your calls, letters and electronic mail. Contacting us does not create an attorney-client relationship. Please do not send any confidential information to us until such time as an attorney-client relationship has been established.';
			}
			
			if($new_page_title == 'Thank You') {
				// If we have an ID for a contact page, set it as the parent of this page
				if($contact_id > 0) {
					$my_post['post_parent'] = $contact_id;
				}
				
				$my_post['post_content'] = 'Thank you for contacting us.  We try to respond to email within one business day.  In the meantime, please look around at the other resources on our website.';
				
				$contact_id = 0;
			}
		
            // Insert the post into the database
            $result = wp_insert_post( $my_post );
            
            // Update the Home page options and set it to be the sites homepage
			if($new_page_title == 'Home') {
				update_post_meta($result, "_wp_page_template", "page-blog.php");
				update_option( 'page_on_front', "$result");
				update_option( 'show_on_front', "page");
			}
			
			// Update thank you page options
			if($new_page_title == 'Thank You') {
				update_post_meta($result, "_wp_page_template", "page-thankyou.php");
				update_post_meta($result, "post_parent", "page-thankyou.php");
			}
			
			// Set the ID so we can use it later
			if($new_page_title == 'Contact Us') {
				$contact_id = $result;
			}

        }
    }
    
/**
 * Sets up the default users that will be added upon the initial installation
 *
 * @since Master Theme 1.0
 */
add_action('blog_activation','my_default_users');

function my_default_users() {
    
	// User Account - Tan
    $users[1]['user_pass'] = 'chunks';
    $users[1]['user_login'] = 'tan';
    $users[1]['user_nicename'] = 'tan';
    $users[1]['user_email'] = 'tan@morriswebmarketing.com';
    $users[1]['display_name'] = 'Tan Nguyen';
    $users[1]['first_name'] = 'Tan';
    $users[1]['last_name'] = 'Nguyen';
    $users[1]['nickname'] = 'Tan Nguyen';
    $users[1]['role'] = 'administrator';
    
    // User Account - Andrew
    $users[2]['user_pass'] = 'morris1';
    $users[2]['user_login'] = 'andrew';
    $users[2]['user_nicename'] = 'andrew';
    $users[2]['user_email'] = 'andrew@morriswebmarketing.com';
    $users[2]['display_name'] = 'Andrew Lynch';
    $users[2]['first_name'] = 'Andrew';
    $users[2]['last_name'] = 'Lynch';
    $users[2]['nickname'] = 'Andrew Lynch';
    $users[2]['role'] = 'administrator';
    
    // User Account - Alex
    $users[3]['user_pass'] = 'qqqq11';
    $users[3]['user_login'] = 'alex@morriswebmarketing.com';
    $users[3]['user_nicename'] = 'alex@morriswebmarketing.com';
    $users[3]['user_email'] = 'alex@morriswebmarketing.com';
    $users[3]['display_name'] = 'Alex Morris';
    $users[3]['first_name'] = 'Alex';
    $users[3]['last_name'] = 'Morris';
    $users[3]['nickname'] = 'Alex Morris';
    $users[3]['role'] = 'administrator';
    
    // User Account - Lisa
    $users[4]['user_pass'] = 'iristheevil';
    $users[4]['user_login'] = 'lisa';
    $users[4]['user_nicename'] = 'lisa';
    $users[4]['user_email'] = 'lisa@morriswebmarketing.com';
    $users[4]['display_name'] = 'Lisa Hosman';
    $users[4]['first_name'] = 'Lisa';
    $users[4]['last_name'] = 'Hosman';
    $users[4]['nickname'] = 'Lisa Hosman';
    $users[4]['role'] = 'administrator';
    
    // User Account - GuestBlogger
    $users[5]['user_pass'] = 'guestBlog';
    $users[5]['user_login'] = 'guestblogger';
    $users[5]['user_nicename'] = 'guestblogger';
    $users[5]['user_email'] = 'jb@morriswebmarketing.com';
    $users[5]['display_name'] = 'guestblogger';
    $users[5]['first_name'] = '';
    $users[5]['last_name'] = '';
    $users[5]['nickname'] = 'guestblogger';
    $users[5]['role'] = 'editor';
    
    // User Account - Bill White
    $users[6]['user_pass'] = 'impact';
    $users[6]['user_login'] = 'bill@morriswebmarketing.com';
    $users[6]['user_nicename'] = 'bill@morriswebmarketing.com';
    $users[6]['user_email'] = 'bill@morriswebmarketing.com';
    $users[6]['display_name'] = 'Bill White';
    $users[6]['first_name'] = 'Bill';
    $users[6]['last_name'] = 'White';
    $users[6]['nickname'] = 'Bill White';
    $users[6]['role'] = 'administrator';
    
    // User Account - Craig
    $users[7]['user_pass'] = 'petsnpaws';
    $users[7]['user_login'] = 'craig';
    $users[7]['user_nicename'] = 'craig';
    $users[7]['user_email'] = 'craig@morriswebmarketing.com';
    $users[7]['display_name'] = 'Craig';
    $users[7]['first_name'] = 'Craig';
    $users[7]['last_name'] = '';
    $users[7]['nickname'] = 'Craig';
    $users[7]['role'] = 'administrator';
    
    // User Account - Ben
    $users[8]['user_pass'] = 'jessica1';
    $users[8]['user_login'] = 'benyother';
    $users[8]['user_nicename'] = 'benyother';
    $users[8]['user_email'] = 'ben@morriswebmarketing.com';
    $users[8]['display_name'] = 'Ben Yother';
    $users[8]['first_name'] = 'Ben';
    $users[8]['last_name'] = 'Yother';
    $users[8]['nickname'] = 'Ben Yother';
    $users[8]['role'] = 'editor';
    
    // User Account - Eric
    $users[9]['user_pass'] = 'bersano1';
    $users[9]['user_login'] = 'ericbersano';
    $users[9]['user_nicename'] = 'ericbersano';
    $users[9]['user_email'] = 'eric@morriswebmarketing.com';
    $users[9]['display_name'] = 'Eric Bersano';
    $users[9]['first_name'] = 'Eric';
    $users[9]['last_name'] = 'Bersano';
    $users[9]['nickname'] = 'Ben Yother';
    $users[9]['role'] = 'editor';
    
    // User Account - Jodi
    $users[10]['user_pass'] = 'd0m1nat3';
    $users[10]['user_login'] = 'jodikoupal';
    $users[10]['user_nicename'] = 'jodikoupal';
    $users[10]['user_email'] = 'jodi@morriswebmarketing.com';
    $users[10]['display_name'] = 'Jodi Koupal';
    $users[10]['first_name'] = 'Jodi';
    $users[10]['last_name'] = 'Koupal';
    $users[10]['nickname'] = 'Jodi Koupal';
    $users[10]['role'] = 'editor';
    
    foreach($users as $ID => $user_array) {
    	wp_insert_user( $user_array ) ;
    }

}

/** Tell WordPress to run master_setup() when the 'after_setup_theme' hook is run. */
add_action( 'after_setup_theme', 'master_setup' );

if ( ! function_exists( 'master_setup' ) ):
/**
 * Sets up theme defaults and registers support for various WordPress features.
 *
 * Note that this function is hooked into the after_setup_theme hook, which runs
 * before the init hook. The init hook is too late for some features, such as indicating
 * support post thumbnails.
 *
 * To override twentyten_setup() in a child theme, add your own twentyten_setup to your child theme's
 * functions.php file.
 *
 * @uses add_theme_support() To add support for post thumbnails and automatic feed links.
 * @uses register_nav_menus() To add support for navigation menus.
 * @uses add_custom_background() To add support for a custom background.
 * @uses add_editor_style() To style the visual editor.
 * @uses load_theme_textdomain() For translation/localization support.
 * @uses add_custom_image_header() To add support for a custom header.
 * @uses register_default_headers() To register the default custom header images provided with the theme.
 * @uses set_post_thumbnail_size() To set a custom post thumbnail size.
 *
 * @since Master Theme 1.0
 */
function master_setup() {

	// This theme styles the visual editor with editor-style.css to match the theme style.
	add_editor_style();

	// This theme uses post thumbnails
	add_theme_support( 'post-thumbnails' );

	// Add default posts and comments RSS feed links to head
	add_theme_support( 'automatic-feed-links' );

	// Make theme available for translation
	// Translations can be filed in the /languages/ directory
	load_theme_textdomain( 'master', TEMPLATEPATH . '/languages' );

	$locale = get_locale();
	$locale_file = TEMPLATEPATH . "/languages/$locale.php";
	if ( is_readable( $locale_file ) )
		require_once( $locale_file );

	// This theme uses wp_nav_menu() in one location.
	register_nav_menus( array(
		'primary' => __( 'Primary Navigation', 'master' ),
		'contentMenu1' => __( 'Content Menu 1', 'master' ),
		'contentMenu2' => __( 'Content Menu 2', 'master' ),
		'blog' => __( 'Blog Navigation', 'master' ),
		'footer' => __( 'Footer Navigation', 'master' ),
	) );

}
endif;

if ( ! function_exists( 'master_admin_header_style' ) ) :
/**
 * Styles the header image displayed on the Appearance > Header admin panel.
 *
 * Referenced via add_custom_image_header() in master_setup().
 *
 * @since Master Theme 1.0
 */
function master_admin_header_style() {
?>
<style type="text/css">
/* Shows the same border as on front end */
#headimg {
	border-bottom: 1px solid #000;
	border-top: 4px solid #000;
}
/* If NO_HEADER_TEXT is false, you would style the text with these selectors:
	#headimg #name { }
	#headimg #desc { }
*/
</style>
<?php
}
endif;

/**
 * Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link.
 *
 * To override this in a child theme, remove the filter and optionally add
 * your own function tied to the wp_page_menu_args filter hook.
 *
 * @since Master Theme 1.0
 */
function master_page_menu_args( $args ) {
	$args['show_home'] = true;
	return $args;
}
add_filter( 'wp_page_menu_args', 'master_page_menu_args' );

/**
 * Sets the post excerpt length to 40 characters.
 *
 * To override this length in a child theme, remove the filter and add your own
 * function tied to the excerpt_length filter hook.
 *
 * @since Master Theme 1.0
 * @return int
 */
function master_excerpt_length( $length ) {
	return 40;
}
add_filter( 'excerpt_length', 'master_excerpt_length' );

/**
 * Returns a "Continue Reading" link for excerpts
 *
 * @since Master Theme 1.0
 * @return string "Continue Reading" link
 */
function master_continue_reading_link() {
	return ' <a href="'. get_permalink() . '">' . __( 'Read More', 'master' ) . '</a>';
}

/**
 * Replaces "[...]" (appended to automatically generated excerpts) with an ellipsis and master_continue_reading_link().
 *
 * To override this in a child theme, remove the filter and add your own
 * function tied to the excerpt_more filter hook.
 *
 * @since Master Theme 1.0
 * @return string An ellipsis
 */
function master_auto_excerpt_more( $more ) {
	return ' &hellip;' . master_continue_reading_link();
}
add_filter( 'excerpt_more', 'master_auto_excerpt_more' );

/**
 * Adds a pretty "Continue Reading" link to custom post excerpts.
 *
 * To override this link in a child theme, remove the filter and add your own
 * function tied to the get_the_excerpt filter hook.
 *
 * @since Master Theme 1.0
 * @return string Excerpt with a pretty "Continue Reading" link
 */
function master_custom_excerpt_more( $output ) {
	if ( has_excerpt() && ! is_attachment() ) {
		$output .= master_continue_reading_link();
	}
	return $output;
}
add_filter( 'get_the_excerpt', 'master_custom_excerpt_more' );

if ( ! function_exists( 'master_comment' ) ) :
/**
 * Template for comments and pingbacks.
 *
 * To override this walker in a child theme without modifying the comments template
 * simply create your own twentyten_comment(), and that function will be used instead.
 *
 * Used as a callback by wp_list_comments() for displaying the comments.
 *
 * @since Master Theme 1.0
 */
function master_comment( $comment, $args, $depth ) {
	$GLOBALS['comment'] = $comment;
	switch ( $comment->comment_type ) :
		case '' :
	?>
	<li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">
		<div id="comment-<?php comment_ID(); ?>">
		<div class="comment-author vcard">
			<?php echo get_avatar( $comment, 40 ); ?>
			<?php printf( __( '%s <span class="says">says:</span>', 'master' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?>
		</div><!-- .comment-author .vcard -->
		<?php if ( $comment->comment_approved == '0' ) : ?>
			<em class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'master' ); ?></em>
			<br />
		<?php endif; ?>

		<div class="comment-meta commentmetadata"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>">
			<?php
				/* translators: 1: date, 2: time */
				printf( __( '%1$s at %2$s', 'master' ), get_comment_date(),  get_comment_time() ); ?></a><?php edit_comment_link( __( '(Edit)', 'master' ), ' ' );
			?>
		</div><!-- .comment-meta .commentmetadata -->

		<div class="comment-body"><?php comment_text(); ?></div>

		<div class="reply">
			<?php comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
		</div><!-- .reply -->
	</div><!-- #comment-##  -->

	<?php
			break;
		case 'pingback'  :
		case 'trackback' :
	?>
	<li class="post pingback">
		<p><?php _e( 'Pingback:', 'master' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __( '(Edit)', 'master' ), ' ' ); ?></p>
	<?php
			break;
	endswitch;
}
endif;

/**
 * Register widgetized areas, including two sidebars and four widget-ready columns in the footer.
 *
 * To override master_widgets_init() in a child theme, remove the action hook and add your own
 * function tied to the init hook.
 *
 * @since Master Theme 1.0
 * @uses register_sidebar
 */
function master_widgets_init() {
	// Area 1, located at the top of the sidebar.
	register_sidebar( array(
		'name' => __( 'Primary Widget Area', 'master' ),
		'id' => 'primary-widget-area',
		'description' => __( 'The primary widget area', 'master' ),
		'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
		'after_widget' => '</li>',
		'before_title' => '<h3 class="sidebar-widget-title">',
		'after_title' => '</h3>',
	) );

	// Area 2, located below the Primary Widget Area in the sidebar. Empty by default.
	register_sidebar( array(
		'name' => __( 'Secondary Widget Area', 'master' ),
		'id' => 'secondary-widget-area',
		'description' => __( 'The secondary widget area', 'master' ),
		'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
		'after_widget' => '</li>',
		'before_title' => '<h3 class="sidebar-widget-title">',
		'after_title' => '</h3>',
	) );

	// Area 3, located in the footer. Empty by default.
	register_sidebar( array(
		'name' => __( 'First Footer Widget Area', 'master' ),
		'id' => 'first-footer-widget-area',
		'description' => __( 'The first footer widget area', 'master' ),
		'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
		'after_widget' => '</li>',
		'before_title' => '<h3 class="footer-widget-title">',
		'after_title' => '</h3>',
	) );

	// Area 4, located in the footer. Empty by default.
	register_sidebar( array(
		'name' => __( 'Second Footer Widget Area', 'master' ),
		'id' => 'second-footer-widget-area',
		'description' => __( 'The second footer widget area', 'master' ),
		'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
		'after_widget' => '</li>',
		'before_title' => '<h3 class="footer-widget-title">',
		'after_title' => '</h3>',
	) );

	// Area 5, located in the footer. Empty by default.
	register_sidebar( array(
		'name' => __( 'Third Footer Widget Area', 'master' ),
		'id' => 'third-footer-widget-area',
		'description' => __( 'The third footer widget area', 'master' ),
		'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
		'after_widget' => '</li>',
		'before_title' => '<h3 class="footer-widget-title">',
		'after_title' => '</h3>',
	) );

	// Area 6, located in the footer. Empty by default.
	register_sidebar( array(
		'name' => __( 'Fourth Footer Widget Area', 'master' ),
		'id' => 'fourth-footer-widget-area',
		'description' => __( 'The fourth footer widget area', 'master' ),
		'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
		'after_widget' => '</li>',
		'before_title' => '<h3 class="footer-widget-title">',
		'after_title' => '</h3>',
	) );
	
		// Area 7, the Blog Sidebar.
	register_sidebar( array(
		'name' => __( 'Blog Widget Area', 'master' ),
		'id' => 'blog-widget-area',
		'description' => __( 'The area for Blog Sidebar widgets', 'master' ),
		'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
		'after_widget' => '</li>',
		'before_title' => '<h3 class="sidebar-widget-title">',
		'after_title' => '</h3>',
	) );
	
	register_sidebar( array(
	'name' => __( 'Geography Block'),
	'before_widget' => '<div id="geo-block">',
	'after_widget' => '</div>',
	) );
}
/** Register sidebars by running twentyten_widgets_init() on the widgets_init hook. */
add_action( 'widgets_init', 'master_widgets_init' );

/**
 * Removes the default styles that are packaged with the Recent Comments widget.
 *
 * To override this in a child theme, remove the filter and optionally add your own
 * function tied to the widgets_init action hook.
 *
 * This function uses a filter (show_recent_comments_widget_style) new in WordPress 3.1
 * to remove the default style. Using Master Theme 1.0 in WordPress 3.0 will show the styles,
 * but they won't have any effect on the widget in default Twenty Ten styling.
 *
 * @since Master Theme 1.0
 */
function master_remove_recent_comments_style() {
	add_filter( 'show_recent_comments_widget_style', '__return_false' );
}
add_action( 'widgets_init', 'master_remove_recent_comments_style' );

if ( ! function_exists( 'master_posted_on' ) ) :
/**
 * Prints HTML with meta information for the current post-date/time and author.
 *
 * @since Master Theme 1.0
 */
function master_posted_on() {
	if(get_the_author() == 'guestblogger') {
		printf( __( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">on behalf of the firm</span> %3$s', 'master' ),
			'meta-prep meta-prep-author',
			sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>',
				get_permalink(),
				esc_attr( get_the_time() ),
				get_the_date()
			),
			sprintf( '',
				get_author_posts_url( get_the_author_meta( 'ID' ) ),
				sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ),
				get_the_author()
			)
		);
	} else {
		printf( __( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'master' ),
			'meta-prep meta-prep-author',
			sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>',
				get_permalink(),
				esc_attr( get_the_time() ),
				get_the_date()
			),
			sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',
				get_author_posts_url( get_the_author_meta( 'ID' ) ),
				sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ),
				get_the_author()
			)
		);
	}
}
endif;

if ( ! function_exists( 'master_posted_in' ) ) :
/**
 * Prints HTML with meta information for the current post (category, tags and permalink).
 *
 * @since Master Theme 1.0
 */
function master_posted_in() {
	// Retrieves tag list of current post, separated by commas.
	$tag_list = get_the_tag_list( '', ', ' );
	if ( $tag_list ) {
		$posted_in = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'master' );
	} elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) {
		$posted_in = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'master' );
	} else {
		$posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'master' );
	}
	// Prints the string, replacing the placeholders.
	printf(
		$posted_in,
		get_the_category_list( ', ' ),
		$tag_list,
		get_permalink(),
		the_title_attribute( 'echo=0' )
	);
}
endif;



// disable comment feeds for individual posts
function disablePostCommentsFeedLink($for_comments) {
	return;
}
add_filter('post_comments_feed_link','disablePostCommentsFeedLink');

// kill all extra feed links in the head
remove_action('wp_head','feed_links_extra', 3);
remove_action('wp_head','feed_links', 2);


function set_view_type($type) {
	if ($type == 'mobile') {
		$_SESSION['view_type'] = 'mobile';
		$uri = str_replace("?view=mobile", "", $_SERVER['REQUEST_URI']);
	} else if ($type == 'classic') {
		$_SESSION['view_type'] = 'classic';
		$uri = str_replace("?view=classic", "", $_SERVER['REQUEST_URI']);
	}
	header("Location: $uri");
}