|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/irtiweb/CATS/modules/candidates/ |
Upload File : |
<?php
//TODO: License
include_once('lib/Candidates.php');
include_once('./lib/Width.php');
class candidatesListByViewDataGrid extends CandidatesDataGrid
{
public function __construct($siteID, $parameters, $misc)
{
/* Pager configuration. */
$this->_tableWidth = new Width(100, '%');
$this->_defaultAlphabeticalSortBy = 'lastName';
$this->ajaxMode = false;
$this->showExportCheckboxes = true; //BOXES WILL NOT APPEAR UNLESS SQL ROW exportID IS RETURNED!
$this->showActionArea = true;
$this->showChooseColumnsBox = true;
$this->allowResizing = true;
$this->defaultSortBy = 'dateModifiedSort';
$this->defaultSortDirection = 'DESC';
$this->_defaultColumns = array(
array('name' => 'Attachments', 'width' => 31),
array('name' => 'First Name', 'width' => 75),
array('name' => 'Last Name', 'width' => 85),
array('name' => 'City', 'width' => 75),
array('name' => 'State', 'width' => 50),
array('name' => 'Key Skills', 'width' => 215),
array('name' => 'Owner', 'width' => 65),
array('name' => 'Created', 'width' => 60),
array('name' => 'Modified', 'width' => 60),
);
parent::__construct("candidates:candidatesListByViewDataGrid",
$siteID, $parameters, $misc
);
}
/**
* Adds more options to the action area on the pager. Overloads
* DataGrid Inner Action Area function.
*
* @return html innerActionArea commands.
*/
public function getInnerActionArea()
{
//TODO: Add items:
// - Add to List
// - Add to Pipeline
// - Mass set rank (depends on each candidate having their own personal rank - are we going to do this?)
$html = '';
$html .= $this->getInnerActionAreaItemPopup('Add To List', CATSUtility::getIndexName().'?m=lists&a=addToListFromDatagridModal&dataItemType='.DATA_ITEM_CANDIDATE, 450, 350);
$html .= $this->getInnerActionAreaItemPopup('Add To Pipeline', CATSUtility::getIndexName().'?m=candidates&a=considerForJobSearch', 750, 460);
if(MAIL_MAILER != 0)
{
$html .= $this->getInnerActionAreaItem('Send E-Mail', CATSUtility::getIndexName().'?m=candidates&a=emailCandidates');
}
$html .= $this->getInnerActionAreaItem('Export', CATSUtility::getIndexName().'?m=export&a=exportByDataGrid');
$html .= parent::getInnerActionArea();
return $html;
}
}
class candidatesSavedListByViewDataGrid extends CandidatesDataGrid
{
public function __construct($siteID, $parameters, $misc)
{
$this->_tableWidth = new Width(100, '%');
$this->_defaultAlphabeticalSortBy = 'lastName';
$this->ajaxMode = false;
$this->showExportCheckboxes = true; //BOXES WILL NOT APPEAR UNLESS SQL ROW exportID IS RETURNED!
$this->showActionArea = true;
$this->showChooseColumnsBox = true;
$this->allowResizing = true;
$this->defaultSortBy = 'dateModifiedSort';
$this->defaultSortDirection = 'DESC';
$this->_defaultColumns = array(
array('name' => 'Attachments', 'width' => 31),
array('name' => 'First Name', 'width' => 75),
array('name' => 'Last Name', 'width' => 85),
array('name' => 'City', 'width' => 75),
array('name' => 'State', 'width' => 50),
array('name' => 'Key Skills', 'width' => 200),
array('name' => 'Owner', 'width' => 65),
array('name' => 'Modified', 'width' => 60),
array('name' => 'Added To List', 'width' => 75),
);
parent::__construct("candidates:candidatesSavedListByViewDataGrid",
$siteID, $parameters, $misc
);
}
/**
* Adds more options to the action area on the pager. Overloads
* DataGrid Inner Action Area function.
*
* @return html innerActionArea commands.
*/
public function getInnerActionArea()
{
//TODO: Add items:
// - Add to List
// - Add to Pipeline
// - Mass set rank (depends on each candidate having their own personal rank - are we going to do this?)
$html = '';
$html .= $this->getInnerActionAreaItem('Remove From This List', CATSUtility::getIndexName().'?m=lists&a=removeFromListDatagrid&dataItemType='.DATA_ITEM_CANDIDATE.'&savedListID='.$this->getMiscArgument(), false);
$html .= $this->getInnerActionAreaItemPopup('Add To Pipeline', CATSUtility::getIndexName().'?m=candidates&a=considerForJobSearch', 750, 460);
if(MAIL_MAILER != 0)
{
$html .= $this->getInnerActionAreaItem('Send E-Mail', CATSUtility::getIndexName().'?m=candidates&a=emailCandidates');
}
$html .= $this->getInnerActionAreaItem('Export', CATSUtility::getIndexName().'?m=export&a=exportByDataGrid');
$html .= parent::getInnerActionArea();
return $html;
}
}
?>