PATH:
home
/
letacommog
/
adelcya
/
wp-content
/
plugins
/
wpseo-local
/
classes
/
schema
<?php /** * @package WPSEO_Local\Frontend\Schema */ /** * Class WPSEO_Local_Organization. * * Manages the Schema for an Organization. * * @property WPSEO_Schema_Context $context A value object with context variables. * @property array $options Local SEO options. */ class WPSEO_Local_Organization implements WPSEO_Graph_Piece { /** * A value object with context variables. * * @var WPSEO_Schema_Context */ public $context; /** * Stores the options for this plugin. * * @var array */ public $options = array(); /** * Constructor. * * @param WPSEO_Schema_Context $context A value object with context variables. */ public function __construct( WPSEO_Schema_Context $context ) { $this->context = $context; $this->options = get_option( 'wpseo_local' ); } /** * Determines whether or not this piece should be added to the graph. * * @return bool */ public function is_needed() { if ( is_singular( 'wpseo_locations' ) ) { return true; } return false; } /** * Generates JSON+LD output for locations. * * @return bool|array Array with Place schema data. Returns false when no valid location is found. */ public function generate() { $place = new WPSEO_Local_Place( $this->context ); $place_data = $place->get_locations( get_queried_object_id() ); $place_data = $place_data[ get_queried_object_id() ]; $data = array( '@type' => empty( $place_data['business_type'] ) ? 'Organization' : $place_data['business_type'], '@id' => $this->context->canonical . WPSEO_Local_Schema_IDs::ORGANIZATION_ID, 'name' => get_the_title(), 'location' => array( '@id' => $this->context->canonical . WPSEO_Local_Schema_IDs::PLACE_ID ), 'address' => array( '@id' => $this->context->canonical . WPSEO_Local_Schema_IDs::ADDRESS_ID ), 'mainEntityOfPage' => array( '@id' => $this->context->canonical . WPSEO_Schema_IDs::WEBPAGE_HASH ), ); if ( wpseo_multiple_location_one_organization() ) { $data['parentOrganization'] = array( '@id' => $this->context->site_url . WPSEO_Schema_IDs::ORGANIZATION_HASH ); } $data = $this->add_logo( $data, $place_data ); $data = $this->add_organization_attributes( $data, $place_data ); return $data; } /** * Adds the logo for the current business. * * @param array $data Array with Organization schema data. * @param array $place_data Array with location data. * * @return array Array with Organization schema data. */ private function add_logo( $data, $place_data ) { $logo = wp_get_attachment_image_url( $place_data['business_logo'] ); if ( empty( $logo ) ) { return $data; } $id = $this->context->canonical . WPSEO_Local_Schema_IDs::ORGANIZATION_LOGO; $data['logo'] = array( '@type' => 'ImageObject', '@id' => $id, 'url' => $logo, 'caption' => get_the_title(), ); $data['image'] = array( '@id' => $id ); return $data; } /** * Adds attributes to the organization schema data. * * @param array $data Array with Organization schema data. * @param array $place_data Array with location data. * * @return array Array with Organization schema data. */ private function add_organization_attributes( $data, $place_data ) { $organization_attributes = array( 'email' => 'business_email', 'telephone' => 'business_phone', 'faxNumber' => 'business_fax', 'areaServed' => 'business_area_served', 'vatID' => 'business_vat_id', 'taxID' => 'business_tax_id', 'url' => 'business_url', ); $business_types = new WPSEO_Local_Business_Types_Repository(); if ( $business_types->is_business_type_child_of( 'LocalBusiness', $place_data['business_type'] ) ) { $organization_attributes['priceRange'] = 'business_price_range'; $organization_attributes['currenciesAccepted'] = 'business_currencies_accepted'; $organization_attributes['paymentAccepted'] = 'business_payment_accepted'; } foreach ( $organization_attributes as $attribute => $option_key ) { if ( ! empty( $place_data[ $option_key ] ) ) { $data[ $attribute ] = $place_data[ $option_key ]; } } return $data; } }
[+]
..
[-] class-place-multiple.php
[edit]
[-] class-place.php
[edit]
[-] class-organization-list.php
[edit]
[-] class-schema-ids.php
[edit]
[-] class-schema.php
[edit]
[-] class-organization.php
[edit]
[-] class-place-single.php
[edit]