/system/application/views/event/user.php

https://bitbucket.org/zhemel/cloudengine · PHP · 25 lines · 23 code · 2 blank · 0 comment · 3 complexity · ce222adc36928488384bcd8b82ecba1d MD5 · raw file

  1. <div id="region1">
  2. <h1><?=t("Cloudstream for !person",
  3. array('!person'=>anchor("user/view/$user->user_id", $user->fullname))) ?></h1>
  4. <div class="grid">
  5. <?php $this->load->view('event/header'); ?>
  6. </div>
  7. <div class="grid">
  8. <?php if ($events): ?>
  9. <?php $this->load->view('event/event_stream'); ?>
  10. <?php else: ?>
  11. <p><?=t("No events in this cloudstream.")?></p>
  12. <?php endif; ?>
  13. </div>
  14. <p>
  15. <?= anchor('user/view/'.$user->user_id, t("Back to user")) ?> | <a class="rss" href="<?= $rss ?>"><?=t("RSS")?></a></p>
  16. </div>
  17. <div id="region2">
  18. <?php $this->load->view('search/search_box'); ?>
  19. <?php $this->load->view('user/user_block'); ?>
  20. <p>
  21. <?=t("You can also search for [link-up]people[/link] and [link-ui]institutions[/link]",
  22. array('[link-up]' => t_link('user/people'), '[link-ui]' => t_link('user/institution_list')))?></p>
  23. </div>