vendor/spatie/schema-org/src/BreadcrumbList.php line 26

Open in your IDE?
  1. <?php
  2. namespace Spatie\SchemaOrg;
  3. use Spatie\SchemaOrg\Contracts\BreadcrumbListContract;
  4. use Spatie\SchemaOrg\Contracts\IntangibleContract;
  5. use Spatie\SchemaOrg\Contracts\ItemListContract;
  6. use Spatie\SchemaOrg\Contracts\ThingContract;
  7. /**
  8.  * A BreadcrumbList is an ItemList consisting of a chain of linked Web pages,
  9.  * typically described using at least their URL and their name, and typically
  10.  * ending with the current page.
  11.  *
  12.  * The [[position]] property is used to reconstruct the order of the items in a
  13.  * BreadcrumbList. The convention is that a breadcrumb list has an
  14.  * [[itemListOrder]] of [[ItemListOrderAscending]] (lower values listed first),
  15.  * and that the first items in this list correspond to the "top" or beginning of
  16.  * the breadcrumb trail, e.g. with a site or section homepage. The specific
  17.  * values of 'position' are not assigned meaning for a BreadcrumbList, but they
  18.  * should be integers, e.g. beginning with '1' for the first item in the list.
  19.  *
  20.  * @see https://schema.org/BreadcrumbList
  21.  *
  22.  */
  23. class BreadcrumbList extends BaseType implements BreadcrumbListContractIntangibleContractItemListContractThingContract
  24. {
  25.     /**
  26.      * An additional type for the item, typically used for adding more specific
  27.      * types from external vocabularies in microdata syntax. This is a
  28.      * relationship between something and a class that the thing is in. In RDFa
  29.      * syntax, it is better to use the native RDFa syntax - the 'typeof'
  30.      * attribute - for multiple types. Schema.org tools may have only weaker
  31.      * understanding of extra types, in particular those defined externally.
  32.      *
  33.      * @param string|string[] $additionalType
  34.      *
  35.      * @return static
  36.      *
  37.      * @see https://schema.org/additionalType
  38.      */
  39.     public function additionalType($additionalType)
  40.     {
  41.         return $this->setProperty('additionalType'$additionalType);
  42.     }
  43.     /**
  44.      * An alias for the item.
  45.      *
  46.      * @param string|string[] $alternateName
  47.      *
  48.      * @return static
  49.      *
  50.      * @see https://schema.org/alternateName
  51.      */
  52.     public function alternateName($alternateName)
  53.     {
  54.         return $this->setProperty('alternateName'$alternateName);
  55.     }
  56.     /**
  57.      * A description of the item.
  58.      *
  59.      * @param string|string[] $description
  60.      *
  61.      * @return static
  62.      *
  63.      * @see https://schema.org/description
  64.      */
  65.     public function description($description)
  66.     {
  67.         return $this->setProperty('description'$description);
  68.     }
  69.     /**
  70.      * A sub property of description. A short description of the item used to
  71.      * disambiguate from other, similar items. Information from other properties
  72.      * (in particular, name) may be necessary for the description to be useful
  73.      * for disambiguation.
  74.      *
  75.      * @param string|string[] $disambiguatingDescription
  76.      *
  77.      * @return static
  78.      *
  79.      * @see https://schema.org/disambiguatingDescription
  80.      */
  81.     public function disambiguatingDescription($disambiguatingDescription)
  82.     {
  83.         return $this->setProperty('disambiguatingDescription'$disambiguatingDescription);
  84.     }
  85.     /**
  86.      * The identifier property represents any kind of identifier for any kind of
  87.      * [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides
  88.      * dedicated properties for representing many of these, either as textual
  89.      * strings or as URL (URI) links. See [background
  90.      * notes](/docs/datamodel.html#identifierBg) for more details.
  91.      *
  92.      * @param \Spatie\SchemaOrg\Contracts\PropertyValueContract|\Spatie\SchemaOrg\Contracts\PropertyValueContract[]|string|string[] $identifier
  93.      *
  94.      * @return static
  95.      *
  96.      * @see https://schema.org/identifier
  97.      */
  98.     public function identifier($identifier)
  99.     {
  100.         return $this->setProperty('identifier'$identifier);
  101.     }
  102.     /**
  103.      * An image of the item. This can be a [[URL]] or a fully described
  104.      * [[ImageObject]].
  105.      *
  106.      * @param \Spatie\SchemaOrg\Contracts\ImageObjectContract|\Spatie\SchemaOrg\Contracts\ImageObjectContract[]|string|string[] $image
  107.      *
  108.      * @return static
  109.      *
  110.      * @see https://schema.org/image
  111.      */
  112.     public function image($image)
  113.     {
  114.         return $this->setProperty('image'$image);
  115.     }
  116.     /**
  117.      * For itemListElement values, you can use simple strings (e.g. "Peter",
  118.      * "Paul", "Mary"), existing entities, or use ListItem.
  119.      *
  120.      * Text values are best if the elements in the list are plain strings.
  121.      * Existing entities are best for a simple, unordered list of existing
  122.      * things in your data. ListItem is used with ordered lists when you want to
  123.      * provide additional context about the element in that list or when the
  124.      * same item might be in different places in different lists.
  125.      *
  126.      * Note: The order of elements in your mark-up is not sufficient for
  127.      * indicating the order or elements.  Use ListItem with a 'position'
  128.      * property in such cases.
  129.      *
  130.      * @param \Spatie\SchemaOrg\Contracts\ListItemContract|\Spatie\SchemaOrg\Contracts\ListItemContract[]|\Spatie\SchemaOrg\Contracts\ThingContract|\Spatie\SchemaOrg\Contracts\ThingContract[]|string|string[] $itemListElement
  131.      *
  132.      * @return static
  133.      *
  134.      * @see https://schema.org/itemListElement
  135.      */
  136.     public function itemListElement($itemListElement)
  137.     {
  138.         return $this->setProperty('itemListElement'$itemListElement);
  139.     }
  140.     /**
  141.      * Type of ordering (e.g. Ascending, Descending, Unordered).
  142.      *
  143.      * @param \Spatie\SchemaOrg\Contracts\ItemListOrderTypeContract|\Spatie\SchemaOrg\Contracts\ItemListOrderTypeContract[]|string|string[] $itemListOrder
  144.      *
  145.      * @return static
  146.      *
  147.      * @see https://schema.org/itemListOrder
  148.      */
  149.     public function itemListOrder($itemListOrder)
  150.     {
  151.         return $this->setProperty('itemListOrder'$itemListOrder);
  152.     }
  153.     /**
  154.      * Indicates a page (or other CreativeWork) for which this thing is the main
  155.      * entity being described. See [background
  156.      * notes](/docs/datamodel.html#mainEntityBackground) for details.
  157.      *
  158.      * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $mainEntityOfPage
  159.      *
  160.      * @return static
  161.      *
  162.      * @see https://schema.org/mainEntityOfPage
  163.      */
  164.     public function mainEntityOfPage($mainEntityOfPage)
  165.     {
  166.         return $this->setProperty('mainEntityOfPage'$mainEntityOfPage);
  167.     }
  168.     /**
  169.      * The name of the item.
  170.      *
  171.      * @param string|string[] $name
  172.      *
  173.      * @return static
  174.      *
  175.      * @see https://schema.org/name
  176.      */
  177.     public function name($name)
  178.     {
  179.         return $this->setProperty('name'$name);
  180.     }
  181.     /**
  182.      * The number of items in an ItemList. Note that some descriptions might not
  183.      * fully describe all items in a list (e.g., multi-page pagination); in such
  184.      * cases, the numberOfItems would be for the entire list.
  185.      *
  186.      * @param int|int[] $numberOfItems
  187.      *
  188.      * @return static
  189.      *
  190.      * @see https://schema.org/numberOfItems
  191.      */
  192.     public function numberOfItems($numberOfItems)
  193.     {
  194.         return $this->setProperty('numberOfItems'$numberOfItems);
  195.     }
  196.     /**
  197.      * Indicates a potential Action, which describes an idealized action in
  198.      * which this thing would play an 'object' role.
  199.      *
  200.      * @param \Spatie\SchemaOrg\Contracts\ActionContract|\Spatie\SchemaOrg\Contracts\ActionContract[] $potentialAction
  201.      *
  202.      * @return static
  203.      *
  204.      * @see https://schema.org/potentialAction
  205.      */
  206.     public function potentialAction($potentialAction)
  207.     {
  208.         return $this->setProperty('potentialAction'$potentialAction);
  209.     }
  210.     /**
  211.      * URL of a reference Web page that unambiguously indicates the item's
  212.      * identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or
  213.      * official website.
  214.      *
  215.      * @param string|string[] $sameAs
  216.      *
  217.      * @return static
  218.      *
  219.      * @see https://schema.org/sameAs
  220.      */
  221.     public function sameAs($sameAs)
  222.     {
  223.         return $this->setProperty('sameAs'$sameAs);
  224.     }
  225.     /**
  226.      * A CreativeWork or Event about this Thing.
  227.      *
  228.      * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|\Spatie\SchemaOrg\Contracts\EventContract|\Spatie\SchemaOrg\Contracts\EventContract[] $subjectOf
  229.      *
  230.      * @return static
  231.      *
  232.      * @see https://schema.org/subjectOf
  233.      * @link https://github.com/schemaorg/schemaorg/issues/1670
  234.      */
  235.     public function subjectOf($subjectOf)
  236.     {
  237.         return $this->setProperty('subjectOf'$subjectOf);
  238.     }
  239.     /**
  240.      * URL of the item.
  241.      *
  242.      * @param string|string[] $url
  243.      *
  244.      * @return static
  245.      *
  246.      * @see https://schema.org/url
  247.      */
  248.     public function url($url)
  249.     {
  250.         return $this->setProperty('url'$url);
  251.     }
  252. }