mirror of
https://github.com/friendica/friendica
synced 2025-04-26 15:10:11 +00:00
Issue 6168: "redir" now mostly use OWA
This commit is contained in:
parent
89f5a9c550
commit
491fc5f78a
6 changed files with 34 additions and 10 deletions
|
@ -98,6 +98,26 @@ class Contact extends BaseObject
|
|||
* @}
|
||||
*/
|
||||
|
||||
/**
|
||||
* @brief Get the basepath for a given contact link
|
||||
*
|
||||
* @param string $url The contact link
|
||||
*
|
||||
* @return string basepath
|
||||
*/
|
||||
public static function getBasepath($url)
|
||||
{
|
||||
$data = Probe::uri($url);
|
||||
if (!empty($data['baseurl'])) {
|
||||
return $data['baseurl'];
|
||||
}
|
||||
|
||||
$urlarr = explode('/profile/', $url);
|
||||
$basepath = $urlarr[0];
|
||||
|
||||
return $basepath;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Returns the contact id for the user and the public contact id for a given contact id
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue