本文整理匯總了PHP中Tracker::getDescription方法的典型用法代碼示例。如果您正苦於以下問題:PHP Tracker::getDescription方法的具體用法?PHP Tracker::getDescription怎麽用?PHP Tracker::getDescription使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Tracker
的用法示例。
在下文中一共展示了Tracker::getDescription方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: tracker_description
public function tracker_description()
{
return $this->tracker->getDescription();
}
示例2: view
public function view()
{
// Start building the page
$this->setPageType('index');
$this->setTitle(__('%1$s – %2$s', array(__('Symphony'), __('Tracker Activity'))));
// Add a button to clear all activity
$clearform = new XMLElement('form');
$clearform->setAttribute('method', 'post');
$clearform->setAttribute('action', Symphony::Engine()->getCurrentPageURL());
$button = new XMLElement('button', __('Clear All'));
$button->setAttribute('class', 'tracker confirm');
$button->setAttribute('title', __('Clear all Activity'));
$button->setAttribute('name', 'action[clear-all]');
$clearform->appendChild($button);
$this->appendSubheading(__('Tracker Activity'), $clearform);
// Build pagination, sorting, and limiting info
$current_page = isset($_REQUEST['pg']) && is_numeric($_REQUEST['pg']) ? max(1, intval($_REQUEST['pg'])) : 1;
$start = (max(1, $current_page) - 1) * Symphony::Configuration()->get('pagination_maximum_rows', 'symphony');
$limit = Symphony::Configuration()->get('pagination_maximum_rows', 'symphony');
// Build filter info
$filters = array();
if (isset($_REQUEST['filter'])) {
list($column, $value) = explode(':', $_REQUEST['filter'], 2);
$values = explode(',', $value);
$filters[$column] = array();
foreach ($values as $value) {
$filters[$column][] = rawurldecode($value);
}
}
// Fetch activity logs
$logs = Tracker::fetchActivities($filters, $limit, $start);
// Build the table
$thead = array(array(__('Activity'), 'col'), array(__('Date'), 'col'), array(__('Time'), 'col'));
$tbody = array();
// If there are no logs, display default message
if (!is_array($logs) or empty($logs)) {
$tbody = array(Widget::TableRow(array(Widget::TableData(__('No data available.'), 'inactive', null, count($thead))), 'odd'));
} else {
$bOdd = true;
foreach ($logs as $activity) {
// Format the date and time
$date = DateTimeObj::get(__SYM_DATE_FORMAT__, strtotime($activity['timestamp'] . ' GMT'));
$time = DateTimeObj::get(__SYM_TIME_FORMAT__, strtotime($activity['timestamp'] . ' GMT'));
$description = Tracker::getDescription($activity);
// Assemble the columns
$col_date = Widget::TableData($date);
$col_time = Widget::TableData($time);
$col_desc = Widget::TableData($description);
$col_desc->appendChild(Widget::Input("items[{$activity['id']}]", null, 'checkbox'));
// Insert the row
if (!is_null($description)) {
$tbody[] = Widget::TableRow(array($col_desc, $col_date, $col_time), $bOdd ? 'odd' : NULL);
$bOdd = !$bOdd;
}
}
}
// Assemble the table
$table = Widget::Table(Widget::TableHead($thead), null, Widget::TableBody($tbody), null);
$table->setAttribute('class', 'selectable');
$this->Form->appendChild($table);
// Append table actions
$options = array(array(null, false, __('With Selected...')), array('delete', false, __('Delete')));
$tableActions = new XMLElement('div');
$tableActions->setAttribute('class', 'actions');
$tableActions->appendChild(Widget::Apply($options));
$this->Form->appendChild($tableActions);
// Append pagination
$filter_sql = Tracker::buildFilterSQL($filters);
$sql = '
SELECT count(id) as `count`
FROM `tbl_tracker_activity`' . $filter_sql;
$per_page = Symphony::Configuration()->get('pagination_maximum_rows', 'symphony');
$total_entries = Symphony::Database()->fetchVar('count', 0, $sql);
$remaining_entries = max(0, $total_entries - ($start + $per_page));
$total_pages = max(1, ceil($total_entries * (1 / $per_page)));
$remaining_pages = max(0, $total - pages - $current_page);
if ($total_pages > 1) {
$ul = new XMLElement('ul');
$ul->setAttribute('class', 'page');
// First
$li = new XMLElement('li');
if ($current_page > 1) {
$li->appendChild(Widget::Anchor(__('First'), Administration::instance()->getCurrentPageURL() . '?pg=1'));
} else {
$li->setValue(__('First'));
}
$ul->appendChild($li);
// Previous
$li = new XMLElement('li');
if ($current_page > 1) {
$li->appendChild(Widget::Anchor(__('← Previous'), Administration::instance()->getCurrentPageURL() . '?pg=' . ($current_page - 1)));
} else {
$li->setValue(__('← Previous'));
}
$ul->appendChild($li);
// Summary
$li = new XMLElement('li', __('Page %1$s of %2$s', array($current_page, max($current_page, $total_pages))));
$li->setAttribute('title', __('Viewing %1$s - %2$s of %3$s entries', array($start, $current_page != $total_pages ? $current_page * Symphony::Configuration()->get('pagination_maximum_rows', 'symphony') : $total_entries, $total_entries)));
$ul->appendChild($li);
// Next
//.........這裏部分代碼省略.........
示例3: renderPanel
public function renderPanel($context)
{
$config = $context['config'];
$page = Administration::instance()->Page;
switch ($context['type']) {
case 'tracker_activity':
// Build filter info
$filters = array();
if (isset($config['filter_string'])) {
list($column, $value) = explode(':', $config['filter_string'], 2);
$values = explode(',', $value);
$filters[$column] = array();
foreach ($values as $value) {
$filters[$column][] = rawurldecode($value);
}
}
// Check to see we are being called in the right context
// Dashboard also has `contentExtensionDashboardPanel_Config` which extends `AjaxPage`
if (method_exists($page, 'addStylesheetToHead')) {
$page->addStylesheetToHead(URL . '/extensions/tracker/assets/dashboard.css', 'screen', 151);
}
$logs = Tracker::fetchActivities($filters, (int) $config['limit'], 0);
$thead = array(array(__('Activity'), 'col'), array(__('Date'), 'col'), array(__('Time'), 'col'));
$tbody = array();
// If there are no logs, display default message
if (!is_array($logs) or empty($logs)) {
$tbody = array(Widget::TableRow(array(Widget::TableData(__('No data available.'), 'inactive', null, count($thead))), 'odd'));
} else {
$bOdd = true;
foreach ($logs as $activity) {
// Format the date and time
$date = DateTimeObj::get(__SYM_DATE_FORMAT__, strtotime($activity['timestamp'] . ' GMT'));
$time = DateTimeObj::get(__SYM_TIME_FORMAT__, strtotime($activity['timestamp'] . ' GMT'));
$description = Tracker::getDescription($activity);
// Assemble the columns
$col_date = Widget::TableData($date);
$col_time = Widget::TableData($time);
$col_desc = Widget::TableData($description);
// Insert the row
if (!is_null($description)) {
$tbody[] = Widget::TableRow(array($col_desc, $col_date, $col_time), $bOdd ? 'odd' : NULL);
$bOdd = !$bOdd;
}
}
}
// Assemble the table
$table = Widget::Table(Widget::TableHead($thead), null, Widget::TableBody($tbody), null);
$context['panel']->appendChild($table);
break;
}
}
示例4: duplicateTracker
/**
*
* @param array $tracker_mapping
* @param array $field_mapping
* @param Tracker $tracker
* @param int $from_project_id
* @param int $to_project_id
* @param array $ugroup_mapping the ugroup mapping
* @return type
*/
private function duplicateTracker($tracker_mapping, $field_mapping, $tracker, $from_project_id, $to_project_id, $ugroup_mapping)
{
$tracker_and_field_mapping = $this->create($to_project_id, $from_project_id, $tracker->getId(), $tracker->getName(), $tracker->getDescription(), $tracker->getItemName(), $ugroup_mapping);
if ($tracker_and_field_mapping) {
$tracker_mapping[$tracker->getId()] = $tracker_and_field_mapping['tracker']->getId();
$field_mapping = array_merge($field_mapping, $tracker_and_field_mapping['field_mapping']);
} else {
$GLOBALS['Response']->addFeedback('warning', $GLOBALS['Language']->getText('plugin_tracker_admin', 'tracker_not_duplicated', array($tracker->getName())));
}
return array($tracker_mapping, $field_mapping);
}