public function get_html_thumbs() { $html = ''; foreach ($this->people as $person) { $obj_person = new Photoboard_Person($person->id); $html .= $obj_person->get_thumb(); } return $html; }
function photoboard_ajax_photofull() { $id = empty($_REQUEST['id']) ? 0 : (int) $_REQUEST['id']; $person = new Photoboard_Person($id); echo $person->get_full_img_info(); ?> <img src="<?php echo PHOTOBOARD_THEME_PATH_SITE; ?> /img/loading.gif" class="loading" alt="loading..." /> <?php exit; }