mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-11-28 10:30:42 +00:00
put titles of extensions into bold type face
This commit is contained in:
parent
39ec0618c7
commit
085d706b6b
|
|
@ -167,7 +167,8 @@ class SeedDMS_View_ExtensionMgr extends SeedDMS_Theme_Style {
|
|||
}
|
||||
echo "<tr>";
|
||||
echo "<td width=\"32\" ".$class.">".($re['icon-data'] ? '<img width="32" height="32" alt="'.$re['name'].'" title="'.$re['name'].'" src="'.$re['icon-data'].'">' : '')."</td>";
|
||||
echo "<td>".$re['title']."<br /><small>".$re['description']."</small>";
|
||||
echo "<td><strong>".$re['title']."</strong>";
|
||||
echo "<br /><small>".$re['description']."</small>";
|
||||
echo "<br /><small>".getMLText('author').": ".$re['author']['name'].", ".$re['author']['company']."</small>";
|
||||
$this->showErrorMessages($errormsgs);
|
||||
$this->showWarningMessages($warningmsgs);
|
||||
|
|
@ -269,7 +270,7 @@ class SeedDMS_View_ExtensionMgr extends SeedDMS_Theme_Style {
|
|||
if($extconf['icon'])
|
||||
echo "<img width=\"32\" height=\"32\" src=\"".$httproot."ext/".$extname."/".$extconf['icon']."\" alt=\"".$extname."\" title=\"".$extname."\">";
|
||||
echo "</td>";
|
||||
echo "<td>".$extconf['title'];
|
||||
echo "<td><strong>".$extconf['title']."</strong>";
|
||||
echo "<br /><small>".$extconf['description']."</small>";
|
||||
echo "<br /><small>".getMLText('author').": <a href=\"mailto:".htmlspecialchars($extconf['author']['email'])."\">".$extconf['author']['name']."</a>, ".(!empty($extconf['author']['company']) ? $extconf['author']['company'] : '')."</small>";
|
||||
$this->showErrorMessages($errormsgs);
|
||||
|
|
@ -394,7 +395,7 @@ class SeedDMS_View_ExtensionMgr extends SeedDMS_Theme_Style {
|
|||
}
|
||||
echo "<tr>";
|
||||
echo "<td width=\"32\" ".$class.">".($re['icon-data'] ? '<img width="32" height="32" alt="'.$re['name'].'" title="'.$re['name'].'" src="'.$re['icon-data'].'">' : '')."</td>";
|
||||
echo "<td>".$re['title'];
|
||||
echo "<td><strong>".$re['title']."</strong>";
|
||||
echo "<br /><small>".$re['description']."</small>";
|
||||
echo "<br /><small>".getMLText('author').": ".$re['author']['name'].", ".$re['author']['company']."</small>";
|
||||
$this->showErrorMessages($errormsgs);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user