You are here

function opigno_in_house_training_app_get_all_iht_unrestricted_view in Opigno in house training app 7

File

./opigno_in_house_training_app.module, line 561

Code

function opigno_in_house_training_app_get_all_iht_unrestricted_view($node_id) {
  $html = "";
  $nodes = opigno_in_house_training_app_get_all_iht_unrestricted($node_id);
  foreach ($nodes[$node_id] as $index => $node) {
    $node = node_load($node);
    $html .= '<div class="iht-dates">';
    $html .= '<div class="iht-title">';
    $html .= $node->title;
    $html .= "</div>";
    $html .= "</div>";
  }
  return $html;
}