Example #1
0
use_helper('Date');
use_helper('I18N');
use_stylesheets_for_form($fileForm);
use_javascripts_for_form($fileForm);
include_partial('moduletop');
?>

<div id="content">
    <div class="wrap">

        <div class="left_panel">
           <?php 
if ($person->getPhotoImage() && $person->getPhotoImage()->getInternalFilename() != '') {
    ?>
             <img src="<?php 
    echo File::getUserUploadUrl() . $person->getPhotoImage()->getInternalFilename();
    ?>
 " class="photo" alt="foto"/>
           <?php 
} else {
    ?>
             <img src="<?php 
    echo image_path('person.png');
    ?>
" class="photo" alt="foto" />
           <?php 
}
?>
            <ul>
                <li><a class="content_operation" href="<?php 
echo url_for('person/edit?id=' . $person->getId());