| Server IP : 180.180.241.3 / Your IP : 216.73.216.35 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /AppServ/www/app/View/ForeignOrganizations_bk/pdf/ |
Upload File : |
<div class="pdf-view-container">
<div class="text-center">
<?php if ( !empty($data['Photo']) ) : ?>
<?php echo $this->Html->image(
'foreign_organizations/' . $data['ForeignOrganization']['id'] . '/' . $data['Photo'][0]['name'],
array(
'alt' => $data['Photo'][0]['name'],
'title' => $data['Photo'][0]['name'],
'class' => 'pdf-photo'
));
?>
<?php endif; ?>
</div>
<table class="table">
<tbody>
<tr>
<td width="25%"><?php echo __('ชื่อองค์กร') ?></td>
<td width="55%"><?php echo $data['ForeignOrganization']['name'] ?></td>
</tr>
<tr>
<td width="25%"><?php echo __('ชื่อองค์กรภาษาอังกฤษ') ?></td>
<td width="55%"><?php echo $data['ForeignOrganization']['eng_name'] ?></td>
</tr>
<tr>
<td width="25%"><?php echo __('ที่อยู่') ?></td>
<td><?php echo $data['ForeignOrganization']['address'] ?></td>
</tr>
<tr>
<td width="25%"><?php echo __('ประเทศ') ?></td>
<td><?php echo $data['Country']['nicename'] ?></td>
</tr>
<tr>
<td width="20%"><?php echo __('โทรศัพท์') ?></td>
<td width="20%"><?php echo $data['ForeignOrganization']['telephone1'] ?></td>
<td width="20%"><?php echo __('โทรสาร') ?></td>
<td width="20%"><?php echo $data['ForeignOrganization']['fax'] ?></td>
</tr>
<tr>
<td width="20%"><?php echo __('อีเมล') ?></td>
<td width="20%"><?php echo $data['ForeignOrganization']['email'] ?></td>
<td width="20%"><?php echo __('เว็บไซต์') ?></td>
<td width="20%"><?php echo $data['ForeignOrganization']['url'] ?></td>
</tr>
<tr>
<td width="25%"><?php echo __('วันก่อตั้งองค์กร') ?></td>
<td width="55%"><?php echo $data['ForeignOrganization']['founded'] ?></td>
</tr>
<tr>
<td width="25%"><?php echo __('ผู้ประสานงาน') ?></td>
<td width="55%">
<?php $contacts = explode(',', $foreignOrganizations['ForeignOrganization']['contact']); ?>
<ol>
<?php for ( $j = 0; $j < count($contacts); $j++ ) : ?>
<li><?php echo $contacts[$j]; ?></li>
<?php endfor; ?>
</ol>
</td>
</tr>
<tr>
<td width="25%"><?php echo __('พื้นที่การทำงาน') ?></td>
<td width="55%">
<?php $work_area = explode(',', $foreignOrganizations['ForeignOrganization']['work_area']); ?>
<ol>
<?php for ( $i = 0; $i < count($work_area); $i++ ) : ?>
<li><?php echo $work_area[$i]; ?></li>
<?php endfor; ?>
</ol>
</td>
</tr>
<tr>
<td width="25%"><?php echo __('กลุ่มเป้าหมาย') ?></td>
<td width="55%">
<?php $targets = explode(',', $foreignOrganizations['ForeignOrganization']['target']); ?>
<ol>
<?php for ( $k = 0; $k < count($targets); $k++ ) : ?>
<li><?php echo $targets[$k]; ?></li>
<?php endfor; ?>
</ol>
</td>
</tr>
<tr>
<td width="25%"><?php echo __('ผลงานที่ผ่านมา') ?></td>
<td width="55%"><?php echo $data['ForeignOrganization']['portfolio'] ?></td>
</tr>
<tr>
<td width="25%"><?php echo __('ประวัติโดยย่อ') ?></td>
<td width="55%"><?php echo $data['ForeignOrganization']['description'] ?></td>
</tr>
<tr>
<td width="25%"><?php echo __('หมายเหตุ') ?></td>
<td width="55%"><?php echo $data['ForeignOrganization']['comment'] ?></td>
</tr>
</tbody>
</table>
<p class="pdf-generated-date">
<?php echo sprintf('%s %s %s %s',
__('ข้อมูล ณ วันที่'),
$this->Time->format('d/m/Y', 'now'),
__('เวลา'),
$this->Time->format('H:i', 'now') ) ?>
</p>
</div>