コード例 #1
0
ファイル: view.ajax.php プロジェクト: knigherrant/decopatio
 /**
  * Displays the flickr login form
  *
  * @since   5.0
  * @access  public
  * @param   string
  * @return
  */
 public function flickr()
 {
     // Ensure that the user is logged in
     EB::requireLogin();
     $key = $this->input->getRaw('key');
     $html = EBMM::renderFlickr($key);
     return $this->ajax->resolve($html);
 }