QA
Dieser Commit ist enthalten in:
Ursprung
bf306fb369
Commit
a85629f43c
3 geänderte Dateien mit 106 neuen und 107 gelöschten Zeilen
|
@ -28,10 +28,8 @@ class DumpController extends Msd_Controller_Action
|
|||
$dump = new Msd_Dump();
|
||||
$dump->prepareDumpProcess();
|
||||
$this->view->dumpData = new StdClass();
|
||||
$this->view->dumpData->nrOfDatabasesToBackup =
|
||||
count($dump->dbsToBackup);
|
||||
$this->view->dumpData->databasesToBackup =
|
||||
implode(', ', array_keys($dump->dbsToBackup));
|
||||
$this->view->dumpData->nrOfDatabasesToBackup = count($dump->dbsToBackup);
|
||||
$this->view->dumpData->databasesToBackup = implode(', ', array_keys($dump->dbsToBackup));
|
||||
$this->view->dumpData->sumTotal = $dump->sumTotal;
|
||||
//TODO get comment from config profile
|
||||
$this->view->dumpData->comment = '';
|
||||
|
@ -63,7 +61,6 @@ class DumpController extends Msd_Controller_Action
|
|||
$ret = array(
|
||||
'backup_in_progress' => false,
|
||||
'config_file' => $this->view->dynamicConfig->getParam('configFile')
|
||||
|
||||
);
|
||||
echo json_encode($ret);
|
||||
}
|
||||
|
|
|
@ -20,9 +20,11 @@ class Msd_View_Helper_GetIcon extends Zend_View_Helper_Abstract
|
|||
/**
|
||||
* Get html-img-tag for icon image
|
||||
*
|
||||
* @param string $name
|
||||
* @param string $title
|
||||
* @param int $size
|
||||
* @throws Msd_Exception
|
||||
*
|
||||
* @param string $name Icon name
|
||||
* @param string $title HTML title tag
|
||||
* @param int $size Size in Pixel (defines the sub folder to load from)
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
|
@ -32,7 +34,7 @@ class Msd_View_Helper_GetIcon extends Zend_View_Helper_Abstract
|
|||
if (!$baseUrl) {
|
||||
$baseUrl = Zend_Controller_Front::getInstance()->getBaseUrl();
|
||||
}
|
||||
$icons = self::_getIconFilenames();
|
||||
$icons = $this->_getIconFilenames();
|
||||
if (!isset($icons[$name])) {
|
||||
throw new Msd_Exception(
|
||||
'GetIcon: unknown icon \'' . $name . '\' requested'
|
||||
|
|
|
@ -9,7 +9,7 @@ $this->config = $this->parent->config;
|
|||
<table class="bdr floatLeft" summary="Dump settings">
|
||||
<tr class="row-even">
|
||||
<td class="small"><?php echo $this->lang->L_CONFIG_HEADLINE?></td>
|
||||
<td class="small right"><?php echo $this->dynamicConfig->getParam('configFile')?></td>
|
||||
<td class="small right"><?php echo $this->config->getParam('general.title')?></td>
|
||||
</tr>
|
||||
<tr class="dbrow">
|
||||
<td class="small"><?php echo $this->lang->L_DBS?>:</td>
|
||||
|
|
Laden …
In neuem Issue referenzieren