mirror of
https://github.com/friendica/friendica
synced 2024-11-10 11:42:54 +00:00
contactedit-actions-button: use internal links instead of full links
This commit is contained in:
parent
0db83b9586
commit
b93326bb23
1 changed files with 6 additions and 6 deletions
|
@ -970,7 +970,7 @@ function contact_actions($contact) {
|
||||||
if($contact['network'] === NETWORK_DFRN) {
|
if($contact['network'] === NETWORK_DFRN) {
|
||||||
$contact_actions['suggest'] = array(
|
$contact_actions['suggest'] = array(
|
||||||
'label' => t('Suggest friends'),
|
'label' => t('Suggest friends'),
|
||||||
'url' => app::get_baseurl(true) . '/fsuggest/' . $contact['id'],
|
'url' => 'fsuggest/' . $contact['id'],
|
||||||
'title' => '',
|
'title' => '',
|
||||||
'sel' => '',
|
'sel' => '',
|
||||||
'id' => 'suggest',
|
'id' => 'suggest',
|
||||||
|
@ -980,7 +980,7 @@ function contact_actions($contact) {
|
||||||
if($poll_enabled) {
|
if($poll_enabled) {
|
||||||
$contact_actions['update'] = array(
|
$contact_actions['update'] = array(
|
||||||
'label' => t('Update now'),
|
'label' => t('Update now'),
|
||||||
'url' => app::get_baseurl(true) . '/contacts/' . $contact['id'] . '/update',
|
'url' => 'contacts/' . $contact['id'] . '/update',
|
||||||
'title' => '',
|
'title' => '',
|
||||||
'sel' => '',
|
'sel' => '',
|
||||||
'id' => 'update',
|
'id' => 'update',
|
||||||
|
@ -989,7 +989,7 @@ function contact_actions($contact) {
|
||||||
|
|
||||||
$contact_actions['block'] = array(
|
$contact_actions['block'] = array(
|
||||||
'label' => (intval($contact['blocked']) ? t('Unblock') : t('Block') ),
|
'label' => (intval($contact['blocked']) ? t('Unblock') : t('Block') ),
|
||||||
'url' => app::get_baseurl(true) . '/contacts/' . $contact['id'] . '/block',
|
'url' => 'contacts/' . $contact['id'] . '/block',
|
||||||
'title' => t('Toggle Blocked status'),
|
'title' => t('Toggle Blocked status'),
|
||||||
'sel' => (intval($contact['blocked']) ? 'active' : ''),
|
'sel' => (intval($contact['blocked']) ? 'active' : ''),
|
||||||
'id' => 'toggle-block',
|
'id' => 'toggle-block',
|
||||||
|
@ -997,7 +997,7 @@ function contact_actions($contact) {
|
||||||
|
|
||||||
$contact_actions['ignore'] = array(
|
$contact_actions['ignore'] = array(
|
||||||
'label' => (intval($contact['readonly']) ? t('Unignore') : t('Ignore') ),
|
'label' => (intval($contact['readonly']) ? t('Unignore') : t('Ignore') ),
|
||||||
'url' => app::get_baseurl(true) . '/contacts/' . $contact['id'] . '/ignore',
|
'url' => 'contacts/' . $contact['id'] . '/ignore',
|
||||||
'title' => t('Toggle Ignored status'),
|
'title' => t('Toggle Ignored status'),
|
||||||
'sel' => (intval($contact['readonly']) ? 'active' : ''),
|
'sel' => (intval($contact['readonly']) ? 'active' : ''),
|
||||||
'id' => 'toggle-ignore',
|
'id' => 'toggle-ignore',
|
||||||
|
@ -1005,7 +1005,7 @@ function contact_actions($contact) {
|
||||||
|
|
||||||
$contact_actions['archive'] = array(
|
$contact_actions['archive'] = array(
|
||||||
'label' => (intval($contact['archive']) ? t('Unarchive') : t('Archive') ),
|
'label' => (intval($contact['archive']) ? t('Unarchive') : t('Archive') ),
|
||||||
'url' => app::get_baseurl(true) . '/contacts/' . $contact['id'] . '/archive',
|
'url' => 'contacts/' . $contact['id'] . '/archive',
|
||||||
'title' => t('Toggle Archive status'),
|
'title' => t('Toggle Archive status'),
|
||||||
'sel' => (intval($contact['archive']) ? 'active' : ''),
|
'sel' => (intval($contact['archive']) ? 'active' : ''),
|
||||||
'id' => 'toggle-archive',
|
'id' => 'toggle-archive',
|
||||||
|
@ -1013,7 +1013,7 @@ function contact_actions($contact) {
|
||||||
|
|
||||||
$contact_actions['delete'] = array(
|
$contact_actions['delete'] = array(
|
||||||
'label' => t('Delete'),
|
'label' => t('Delete'),
|
||||||
'url' => app::get_baseurl(true) . '/contacts/' . $contact['id'] . '/drop',
|
'url' => 'contacts/' . $contact['id'] . '/drop',
|
||||||
'title' => t('Delete contact'),
|
'title' => t('Delete contact'),
|
||||||
'sel' => '',
|
'sel' => '',
|
||||||
'id' => 'delete',
|
'id' => 'delete',
|
||||||
|
|
Loading…
Reference in a new issue