?>
</p>
			<p><?php 
echo get_lang('The address or this platform is :');
?>
<span class='important'><?php 
echo get_path('rootWeb');
?>
 </span> </p>
		</div>
	</div>
	<div class='section_content'>
	<div class='text_left'>
	<div class='subsection_title'><?php 
echo get_lang('Log in');
?>
</div>
	<p><?php 
printf(get_lang('Once the app has validated the platform address, you can pass to the second screen where you can enter your credentials. You must put exactly the same as when you use %s on your computer.'), get_conf('siteName'));
?>
</p>
	</div>
	<img class='img_right' src='<?php 
echo get_module_url('MOBILE');
?>
/img/print_wp2.png' height='200' alt='print 2' />
	</div>
	<?php 
echo PopupWindowHelper::windowClose();
?>
</div>
Example #2
0
 /**
  * Render the page body
  * @return  string
  */
 public function render()
 {
     if (claro_is_in_a_course()) {
         $this->assign('courseToolList', new CurrentCourseToolListBlock());
     }
     if (!$this->claroBodyHidden) {
         $this->assign('claroBodyStart', true);
         $this->assign('claroBodyEnd', true);
     } else {
         $this->assign('claroBodyStart', false);
         $this->assign('claroBodyEnd', false);
     }
     // automatic since $this->content already exists
     // $this->assign('content', $this->getContent() );
     if ($this->inPopup) {
         $this->hideCourseTitleAndTools();
         $output = PopupWindowHelper::popupEmbed(parent::render());
     } else {
         $output = parent::render();
     }
     return $output;
 }
Example #3
0
 /**
  * Generate and set output to client
  *
  * @access  public
  */
 function output()
 {
     if ($this->inPopup) {
         $this->content = PopupWindowHelper::popupEmbed($this->content);
     }
     $this->embed($this->content, $this->hide_banner, $this->hide_footer, $this->hide_body);
 }
Example #4
0
 /**
  * Embed content between window.close() code
  *
  * @access  static
  * @static
  * @param   string content
  * @return  string embedded content
  */
 public static function popupEmbed($content)
 {
     $out = PopupWindowHelper::windowClose() . $content . PopupWindowHelper::windowClose();
     return $out;
 }