| 1 |
<?php |
<?php |
| 2 |
// $Id: update.report.inc,v 1.10.2.4 2009/06/09 11:08:32 goba Exp $ |
// $Id: update.report.inc,v 1.10.2.5 2009/10/06 12:10:43 goba Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 183 |
$row .= t('Includes: %includes', array('%includes' => implode(', ', $project['includes']))); |
$row .= t('Includes: %includes', array('%includes' => implode(', ', $project['includes']))); |
| 184 |
$row .= "</div>\n"; |
$row .= "</div>\n"; |
| 185 |
|
|
| 186 |
|
if (!empty($project['base_themes'])) { |
| 187 |
|
$row .= '<div class="basethemes">'; |
| 188 |
|
sort($project['base_themes']); |
| 189 |
|
// We use !dependencies and manually call theme('placeholder') here to |
| 190 |
|
// avoid breakding the D6 string freeze. This identical string is |
| 191 |
|
// already in modules/system/system.admin.inc. |
| 192 |
|
$row .= t('Depends on: !dependencies', array('!dependencies' => theme('placeholder', implode(', ', $project['base_themes'])))); |
| 193 |
|
$row .= "</div>\n"; |
| 194 |
|
} |
| 195 |
|
|
| 196 |
|
if (!empty($project['sub_themes'])) { |
| 197 |
|
$row .= '<div class="subthemes">'; |
| 198 |
|
sort($project['sub_themes']); |
| 199 |
|
// We use !required and manually call theme('placeholder') here to avoid |
| 200 |
|
// breakding the D6 string freeze. This identical string is already in |
| 201 |
|
// modules/system/system.admin.inc. |
| 202 |
|
$row .= t('Required by: !required', array('!required' => theme('placeholder', implode(', ', $project['sub_themes'])))); |
| 203 |
|
$row .= "</div>\n"; |
| 204 |
|
} |
| 205 |
|
|
| 206 |
$row .= "</div>\n"; // info div. |
$row .= "</div>\n"; // info div. |
| 207 |
|
|
| 208 |
if (!isset($rows[$project['project_type']])) { |
if (!isset($rows[$project['project_type']])) { |