This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/modules/domain/views/service/user/plugin/domain/view.php

27 lines
593 B
PHP
Raw Normal View History

<fieldset class="span5">
<legend>Service Details</legend>
<div class="dl-horizontal">
<dt>Domain Name</dt>
<dd><?php echo $o->name(); ?></dd>
<dt>Domain Expire</dt>
<dd><?php echo $o->display('domain_expire'); ?></dd>
<dt>Domain Auth Password</dt>
<dd><?php echo $o->display('registrar_auth_password'); ?></dd>
<?php if ($x=$o->manage_button()) : ?>
<dt>Registrar</dt>
<dd><?php echo $x; ?></dd>
<?php endif ?>
<?php if ($x=$o->manage_dns_button()) : ?>
<dt>DNS</dt>
<dd><?php echo $x; ?></dd>
<?php endif ?>
</div> <!-- dl-horizontal -->
</fieldset>