| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/icd/components/com_staffmaster/views/listall/ |
Upload File : |
<?php /** * File: default.php * Actual HTML Output * * Staff Master 0_7_5_5 * * Staff Master - Staff Members and Departments Manager * * @version 0.7.5.5 * @package StaffMaster_0_7_5_5 * @subpackage: view_list * @copyright (C) 2007-2008 Travis Hubbard * @license http://www.gnu.org/licenses/ GNU/GPL v3 * @link http://www.systemsunited.net/ **/ defined( '_JEXEC' ) or die( 'Restricted access' ); ?> <div id="staff_container"> <div id="staff_header"> <h1 <?php echo $this->page_title_color_html; ?> > <?php echo $this->params->page_title ?> </h1> <?php if( !empty( $this->params->header_text ) ) :?> <div class="staff_header_text" > <p> <?php echo $this->params->header_text ?> </p> </div> <?php endif; ?> </div> <?php if( !empty( $this->departments_list ) ): foreach( $this->departments_list as $department ): $departmentid = $department->id; if( isset( $this->staff_list[ $departmentid ] ) ): ?> <div class="staff_wrapper_table"> <table border="0" cellpadding="5" cellspacing="5" class="staff_dept_table" width="100%"> <tr> <td> <table border="0" cellpadding="5" cellspacing="5" class="department_table" width="100%" > <tr> <th> <?php echo $this->dept_html['name'][ $department->alias ] ?> </th> </tr> </table> </td> </tr> <?php if( !empty( $this->dept_html['desc'][ $department->alias ] ) ) : ?> <tr> <td> <?php echo $this->dept_html['desc'][ $department->alias ] ?> </td> </tr> <?php endif; ?> <tr> <td> <table border="0" cellpadding="0" cellspacing="0" class="staff_table"> <thead> <tr> <?php if( $this->displayImage ): ?> <th class="staff_table_th_pic"><?php echo JText::_( $this->params->th_staff_image ); ?></th> <?php endif; ?> <th class="staff_table_th_name"><?php echo JText::_( $this->params->th_staff_name ); ?></th> <th class="staff_table_th_title"><?php echo JText::_( $this->params->th_staff_title ); ?></th> </tr> </thead> <tbody> <?php if( ( !empty( $this->staff_list ) ) && ( !empty( $this->staff_list[ $departmentid ] ) ) ): foreach( $this->staff_list[ $departmentid ] as $staff ): ?> <tr> <?php if( $this->displayImage ): ?> <td class="staff_image_table"><?php echo $this->staff_html['image'][ $staff->alias ] ?></td> <?php endif; ?> <td width="25%" align="left"> <div <?php echo $this->staff_name_color_html ?> ><?php echo $this->staff_html['name'][ $staff->alias ] ?></div> </td> <td width="25%" align="left"> <div <?php echo $this->staff_title_color_html ?> ><?php echo $this->staff_html['title'][ $staff->alias ] ?></div> </td> </tr> <?php endforeach; endif; ?> </tbody> </table> </td> </tr> </table> </div> <?php endif; endforeach; endif; ?> <?php if( $this->show_sm_link ): ?> <div id="staff_master_link">Powered By: <a href="http://www.systemsunited.net/" target="_blank">Staff Master</a> v<?php echo $this->params->version ?></div> <?php endif; ?> </div>