www.pudn.com > crm_lm7ap6.rar > departmentList.inc, change:2011-12-01,size:668b
<?php /** * @copyright 2011 City of Bloomington, Indiana * @license http://www.gnu.org/licenses/agpl.txt GNU/AGPL, see LICENSE.txt * @author Cliff Ingham <inghamn@bloomington.in.gov> * @param DepartmentList $this->departmentList */ ?> <div class="departmentList"> <h1><?php if (userIsAllowed('Departments')) { echo $this->template->linkButton( 'Add',BASE_URL.'/departments/updateDepartment.php','add' ); } ?> Departments </h1> <?php foreach ($this->departmentList as $department) { $block = new Block('departments/departmentInfo.inc',array('department'=>$department)); echo $block->render('html',$this->template); } ?> </div>