21 lines
934 B
Smarty
21 lines
934 B
Smarty
<tr class="top">
|
|
<td><strong>{$row['description']}</strong></td>
|
|
<td>{$domains}<if 0 < $subdomains_count><if !empty($domains)>+ </if>{$subdomains_count} {$lng['customer']['subdomains']}</if></td>
|
|
<if \Froxlor\Settings::Get('phpfpm.enabled') == '1'>
|
|
<td>{$row['fpmdesc']}</td>
|
|
<else>
|
|
<td>{$row['binary']}</td>
|
|
</if>
|
|
<td>{$row['file_extensions']}</td>
|
|
<td>
|
|
<a href="{$linker->getLink(array('section' => 'phpsettings', 'page' => $page, 'action' => 'edit', 'id' => $row['id']))}">
|
|
<img src="templates/{$theme}/assets/img/icons/edit.png" alt="{$lng['panel']['edit']}" title="{$lng['panel']['edit']}" />
|
|
</a>
|
|
<if $row['id'] != 1>
|
|
<a href="{$linker->getLink(array('section' => 'phpsettings', 'page' => $page, 'action' => 'delete', 'id' => $row['id']))}">
|
|
<img src="templates/{$theme}/assets/img/icons/delete.png" alt="{$lng['panel']['delete']}" title="{$lng['panel']['delete']}" />
|
|
</a>
|
|
</if>
|
|
</td>
|
|
</tr>
|