Sulu\Bundle\MediaBundle\Entity\CollectionInterface::setStyle PHP Méthode

setStyle() public méthode

Set style.
public setStyle ( string $style ) : Sulu\Bundle\MediaBundle\Entity\CollectionInterface
$style string
Résultat Sulu\Bundle\MediaBundle\Entity\CollectionInterface
    public function setStyle($style);

Usage Example

Exemple #1
0
 /**
  * @param array $style
  *
  * @return $this
  */
 public function setStyle($style)
 {
     if (!is_string($style)) {
         $style = json_encode($style);
     }
     $this->entity->setStyle($style);
     return $this;
 }