PATH:
home
/
letacommog
/
letaweb
/
admin
/
classes
/
hoauth
/
widgets
/
views
<?php /** * @var $sns array of array('provider' => $network->provider, 'profileUrl' => $network->profile->profileURL, 'deleteUrl' => $deleteUrl) */ ?> <ul class="hoauthSNList"> <?php foreach($sns as $sn) { list($provider, $profileUrl, $deleteUrl) = array_values($sn); echo '<li>' . CHtml::link($provider, $profileUrl, array('target' => '_blank')) . ' ' . CHtml::ajaxLink('(' . HOAuthAction::t('Remove') . ')', $deleteUrl, array( 'type' => 'post', 'context' => 'js:this', 'beforeSend' => "js:function() {return confirm('" . HOAuthAction::t('If you remove this social network account, you will you will not be able to login with it.\\n\\nDo you realy want to remove this account?') . "');}", 'success' => 'js:function() {$(this).parent().remove();}', ), array('class'=>"hoauthSNUnbind")) . '</li>'; } ?> </ul>
[+]
..
[-] networksList.php
[edit]
[-] link.php
[edit]