Gentics Portal.Node PHP API
 All Classes Namespaces Functions Variables Pages
auth.php
1 <div class="services">
2  <ul class="auth-services clear">
3  <?php
4  foreach ($services as $name => $service) {
5  echo '<li class="auth-service '.$service->id.'">';
6  $html = '<span class="auth-icon '.$service->id.'"><i></i></span>';
7  $html .= '<span class="auth-title">'.$service->title.'</span>';
8  $html = CHtml::link($html, array($action, 'service' => $name), array(
9  'class' => 'auth-link '.$service->id,
10  ));
11  echo $html;
12  echo '</li>';
13  }
14  ?>
15  </ul>
16 </div>