SimplePie_Restriction::get_relationship() – Get the relationship

You appear to be a bot. Output may be restricted

Description

Get the relationship

Usage

$string|null = SimplePie_Restriction::get_relationship();

Parameters

Returns

string|null Either 'allow' or 'deny'

Source

File name: wordpress/wp-includes/SimplePie/Restriction.php
Lines:

1 to 9 of 9
  public function get_relationship()
  {
    if ($this->relationship !== null)
    {
      return $this->relationship;
    }

    return null;
  }
 

 View on GitHub View on Trac