コード例 #1
0
ファイル: analyst-profile.php プロジェクト: HRNIT/paris2015
<!-- Back to Speakers -->
<div id="BackToSpeakersContainer">
	<div id="BackToSpeakersInnerContainer">
         <a href="../press" target="_parent" title="Back to Speakers">      
               <img src="../../img/speakers/back-icon.png" alt="<">
               <span class="FontLato">BACK TO PRESS PAGE</span>
         </a>
    </div>
</div>
<!-- END Back to Speakers -->
<!-- Speaker Profile -->

<?php 
$link = explode("/", $_SERVER['REQUEST_URI']);
if (isset($link[4])) {
    $content = $press->press($link[4], 'Analyst');
    if ($content != FALSE) {
        echo $content;
    } else {
        if ($link[4] == "index") {
            //if the back to index button pressed
            $content = '';
            $content .= '
			 <!-- Redirect to the Index page of HRN Europe -->
					<script type="text/javascript">
					
					  window.location.href = "../index";
	
					</script>
					';
        } else {
コード例 #2
0
ファイル: blogger-profile.php プロジェクト: HRNIT/paris2015
<!-- Back to Speakers -->
<div id="BackToSpeakersContainer">
	<div id="BackToSpeakersInnerContainer">
         <a href="../press#blogsquad" target="_parent" title="Back to Speakers">      
               <img src="../../img/speakers/back-icon.png" alt="<">
               <span class="FontLato">BACK TO PRESS PAGE</span>
         </a>
    </div>
</div>
<!-- END Back to Speakers -->
<!-- Speaker Profile -->

<?php 
$link = explode("/", $_SERVER['REQUEST_URI']);
if (isset($link[3])) {
    $content = $press->press($link[3], 'Blogger');
    if ($content != FALSE) {
        echo $content;
    } else {
        if ($link[3] == "index") {
            //if the back to index button pressed
            $content = '';
            $content .= '
			 <!-- Redirect to the Index page of HRN Europe -->
					<script type="text/javascript">
					
					  window.location.href = "../index";
	
					</script>
					';
        } else {