First commit
This commit is contained in:
commit
c6e2478c40
13918 changed files with 2303184 additions and 0 deletions
147
sites/all/modules/civicrm/CRM/Admin/Page/Persistent.php
Normal file
147
sites/all/modules/civicrm/CRM/Admin/Page/Persistent.php
Normal file
|
@ -0,0 +1,147 @@
|
|||
<?php
|
||||
/*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @package CRM
|
||||
* @copyright CiviCRM LLC (c) 2004-2017
|
||||
*/
|
||||
|
||||
/**
|
||||
* Page for displaying Parent Information Section tabs
|
||||
*/
|
||||
class CRM_Admin_Page_Persistent extends CRM_Core_Page {
|
||||
|
||||
/**
|
||||
* The action links that we need to display for the browse screen.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
private static $_stringActionLinks;
|
||||
private static $_customizeActionLinks;
|
||||
|
||||
/**
|
||||
* Get action Links.
|
||||
*
|
||||
* @return array
|
||||
* (reference) of action links
|
||||
*/
|
||||
public function &stringActionLinks() {
|
||||
// check if variable _actionsLinks is populated
|
||||
if (!isset(self::$_stringActionLinks)) {
|
||||
|
||||
self::$_stringActionLinks = array(
|
||||
CRM_Core_Action::UPDATE => array(
|
||||
'name' => ts('Edit'),
|
||||
'url' => 'civicrm/admin/tplstrings/add',
|
||||
'qs' => 'reset=1&action=update&id=%%id%%',
|
||||
'title' => ts('Configure'),
|
||||
),
|
||||
);
|
||||
}
|
||||
return self::$_stringActionLinks;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function &customizeActionLinks() {
|
||||
// check if variable _actionsLinks is populated
|
||||
if (!isset(self::$_customizeActionLinks)) {
|
||||
|
||||
self::$_customizeActionLinks = array(
|
||||
CRM_Core_Action::UPDATE => array(
|
||||
'name' => ts('Edit'),
|
||||
'url' => 'civicrm/admin/tplstrings/add',
|
||||
'qs' => 'reset=1&action=update&id=%%id%%&config=1',
|
||||
'title' => ts('Configure'),
|
||||
),
|
||||
);
|
||||
}
|
||||
return self::$_customizeActionLinks;
|
||||
}
|
||||
|
||||
/**
|
||||
* Run the basic page (run essentially starts execution for that page).
|
||||
*/
|
||||
public function run() {
|
||||
CRM_Utils_System::setTitle(ts('DB Template Strings'));
|
||||
$this->browse();
|
||||
return parent::run();
|
||||
}
|
||||
|
||||
/**
|
||||
* Browse all options.
|
||||
*/
|
||||
public function browse() {
|
||||
$permission = FALSE;
|
||||
$this->assign('editClass', FALSE);
|
||||
if (CRM_Core_Permission::check('access CiviCRM')) {
|
||||
$this->assign('editClass', TRUE);
|
||||
$permission = TRUE;
|
||||
}
|
||||
|
||||
$daoResult = new CRM_Core_DAO_Persistent();
|
||||
$daoResult->find();
|
||||
$schoolValues = array();
|
||||
while ($daoResult->fetch()) {
|
||||
$values[$daoResult->id] = array();
|
||||
CRM_Core_DAO::storeValues($daoResult, $values[$daoResult->id]);
|
||||
if ($daoResult->is_config == 1) {
|
||||
$values[$daoResult->id]['action'] = CRM_Core_Action::formLink(self::customizeActionLinks(),
|
||||
NULL,
|
||||
array('id' => $daoResult->id),
|
||||
ts('more'),
|
||||
FALSE,
|
||||
'persistent.config.actions',
|
||||
'Persistent',
|
||||
$daoResult->id
|
||||
);
|
||||
$values[$daoResult->id]['data'] = implode(',', unserialize($daoResult->data));
|
||||
$configCustomization[$daoResult->id] = $values[$daoResult->id];
|
||||
}
|
||||
if ($daoResult->is_config == 0) {
|
||||
$values[$daoResult->id]['action'] = CRM_Core_Action::formLink(self::stringActionLinks(),
|
||||
NULL,
|
||||
array('id' => $daoResult->id),
|
||||
ts('more'),
|
||||
FALSE,
|
||||
'persistent.row.actions',
|
||||
'Persistent',
|
||||
$daoResult->id
|
||||
);
|
||||
$configStrings[$daoResult->id] = $values[$daoResult->id];
|
||||
}
|
||||
}
|
||||
$rows = array(
|
||||
'configTemplates' => $configStrings,
|
||||
'customizeTemplates' => $configCustomization,
|
||||
);
|
||||
$this->assign('rows', $rows);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue