File manager - Edit - /home/vblioqus/bitchats.net/wp-content/plugins/seo-by-rank-math/includes/modules/links/class-link.php
Back
<?php /** * The SEO Link class. * * @since 0.9.0 * @package RankMath * @subpackage RankMath\Links * @author Rank Math <support@rankmath.com> * * @copyright Copyright (C) 2008-2019, Yoast BV * The following code is a derivative work of the code from the Yoast(https://github.com/Yoast/wordpress-seo/), which is licensed under GPL v3. */ namespace RankMath\Links; defined( 'ABSPATH' ) || exit; /** * Link class. */ class Link { /** * Link URL. * * @var string */ protected $url; /** * Link post ID. * * @var int */ protected $target_post_id; /** * Link type. * * @var string */ protected $type; /** * Extra properties for PRO features. * * @var array */ private $extra_properties = []; /** * 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 external. */ public function __construct( $url, $target_post_id, $type ) { $this->url = $url; $this->target_post_id = $target_post_id; $this->type = $type; } /** * Magic setter for dynamic properties (PRO features). * * @param string $name Property name. * @param mixed $value Property value. */ public function __set( $name, $value ) { $this->extra_properties[ $name ] = $value; } /** * Magic getter for dynamic properties (PRO features). * * @param string $name Property name. * @return mixed Property value or null. */ public function __get( $name ) { return isset( $this->extra_properties[ $name ] ) ? $this->extra_properties[ $name ] : null; } /** * Magic isset for dynamic properties (PRO features). * * @param string $name Property name. * @return bool True if property exists. */ public function __isset( $name ) { return isset( $this->extra_properties[ $name ] ); } /** * Returns the URL. * * @return string The URL. */ public function get_url() { return $this->url; } /** * Returns the target post ID. * * @return int The target post ID. */ public function get_target_post_id() { return (int) $this->target_post_id; } /** * Return the link type (internal/external). * * @return string The link type. */ public function get_type() { return $this->type; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings