Interface luya\web\jsonld\LocalBusinessInterface

Implemented byluya\web\jsonld\BarOrPub, luya\web\jsonld\CafeOrCoffeeShop, luya\web\jsonld\EntertainmentBusiness, luya\web\jsonld\FoodEstablishment, luya\web\jsonld\LocalBusiness, luya\web\jsonld\NightClub, luya\web\jsonld\Restaurant
Available since version1.0.14
Source Code https://github.com/luyadev/luya/blob/master/core/web/jsonld/LocalBusinessInterface.php

Local Business Interface

Method Details

Hide inherited methods

getCurrenciesAccepted() public abstract method

Get accepted currencies

public abstract string getCurrenciesAccepted ( )

                public function getCurrenciesAccepted();

            
getOpeningHours() public abstract method

Get opening hours

public abstract string getOpeningHours ( )

                public function getOpeningHours();

            
getPaymentAccepted() public abstract method

Get payment Accepted

public abstract string getPaymentAccepted ( )

                public function getPaymentAccepted();

            
getPriceRange() public abstract method

Get price range

public abstract string getPriceRange ( )

                public function getPriceRange();

            
setCurrenciesAccepted() public abstract method

Set accepted currencies

public abstract static setCurrenciesAccepted ( luya\web\jsonld\CurrencyValue $currency )
$currency luya\web\jsonld\CurrencyValue

                public function setCurrenciesAccepted(CurrencyValue $currency);

            
setOpeningHours() public abstract method

Set Opening Hours

public abstract static setOpeningHours ( luya\web\jsonld\OpeningHoursValue $openingHours )
$openingHours luya\web\jsonld\OpeningHoursValue

                public function setOpeningHours(OpeningHoursValue $openingHours);

            
setPaymentAccepted() public abstract method

Set Payment Accepted

public abstract static setPaymentAccepted ( $payment )
$payment string

                public function setPaymentAccepted($payment);

            
setPriceRange() public abstract method

Set Price range

public abstract static setPriceRange ( $priceRange )
$priceRange string

                public function setPriceRange($priceRange);