| Server IP : 213.186.33.4 / Your IP : 216.73.216.146 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/plugins/wordpress-seo/admin/links/ |
Upload File : |
<?php
/**
* WPSEO plugin file.
*
* @package WPSEO\Admin\Links
*/
/**
* Represents an seo link.
*/
class WPSEO_Link {
/**
* @var string
*/
const TYPE_EXTERNAL = 'external';
/**
* @var string
*/
const TYPE_INTERNAL = 'internal';
/**
* @var string
*/
protected $url;
/**
* @var int
*/
protected $target_post_id;
/**
* @var string
*/
protected $type;
/**
* Sets the properties for the object.
*
* @param string $url The url.
* @param int $target_post_id ID to the post where the link refers to.
* @param string $type The url type: internal or outbound.
*/
public function __construct( $url, $target_post_id, $type ) {
$this->url = $url;
$this->target_post_id = $target_post_id;
$this->type = $type;
}
/**
* Returns the set URL.
*
* @return string The set url.
*/
public function get_url() {
return $this->url;
}
/**
* Returns the set target post id.
*
* @return int The set target post id.
*/
public function get_target_post_id() {
return (int) $this->target_post_id;
}
/**
* Return the set link type.
*
* @return string The set link type.
*/
public function get_type() {
return $this->type;
}
}