mysite_promote_link

Definition

mysite_promote_link($uid, $mid)
mysite.module, line 2749

Description

Format a link to remove content from a MySite page

Parameters

$uid The user id of the MySite page owner. Set to NULL for error checking.

$mid The MySite id from {mysite_data}

Code

function mysite_promote_link($uid, $mid) {
  $link = "mysite/$uid/promote/$mid/1";
  return $link;
}