Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.34 KB | None | 0 0
  1. <!-- Objetivos de Aprend. e Desenvolvimento -->
  2.         <li class="<?php
  3.             if(
  4.               $page_name == 'learning_goals') {
  5.                 echo 'opened active';
  6.             }
  7.             $curType = '';
  8.            
  9.             if(strpos(urldecode($_SERVER[REQUEST_URI]), 'Pré-escola') !== false)
  10.               $curType = 'Pré-escola';
  11.             else if(strpos($_SERVER[REQUEST_URI], 'Maternal') !== false)
  12.               $curType = 'Maternal';
  13.         ?>">
  14.             <a href="#">
  15.                 <i class="fa fa-times"></i>
  16.                 <span>Objetivos de Aprend. e Desenvolvimento</span>
  17.             </a>
  18.  
  19.             <ul>
  20.                 <li class="<?php if($curType == 'Maternal') { echo 'active'; } ?>">
  21.                     <a href="<?php echo site_url('accountant/learning_goals/Maternal'); ?>">
  22.                         <i class="entypo-dot"></i>
  23.                         <span>Maternal</span>
  24.                     </a>
  25.                 </li>
  26.                 <li class="<?php if($curType == 'Pré-escola') { echo 'active'; } ?>">
  27.                     <a href="<?php echo site_url('accountant/learning_goals/' . urlencode('Pré-escola')); ?>">
  28.                         <i class="entypo-dot"></i>
  29.                         <span>Pré-escola</span>
  30.                     </a>
  31.                 </li>
  32.             </ul>
  33. </li>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement