13 lines
563 B
PHP
13 lines
563 B
PHP
<?php
|
|
/**
|
|
* @var sfGuardUser $sf_guard_user
|
|
*/
|
|
?>
|
|
<div>
|
|
<?php if ($sf_guard_user->getDefaultUserBillingData()): ?>
|
|
<?php st_include_partial('user_data', array('user_data' => $sf_guard_user->getDefaultUserBillingData())); ?>
|
|
<?php echo st_get_admin_button('edit', __('Edytuj'), "@stUser?action=userDataBillingEdit&user_id=".$sf_guard_user->getId()) ?>
|
|
<?php else: ?>
|
|
<?php echo st_get_admin_button('edit', __("Uzupełnij dane"), "@stUser?action=userDataBillingEdit&user_id=".$sf_guard_user->getId()); ?>
|
|
<?php endif ?>
|
|
</div>
|