Sulu\Bundle\MediaBundle\Entity\CollectionInterface::setStyle PHP 메소드

setStyle() 공개 메소드

Set style.
public setStyle ( string $style ) : Sulu\Bundle\MediaBundle\Entity\CollectionInterface
$style string
리턴 Sulu\Bundle\MediaBundle\Entity\CollectionInterface
    public function setStyle($style);

Usage Example

예제 #1
0
파일: Collection.php 프로젝트: sulu/sulu
 /**
  * @param array $style
  *
  * @return $this
  */
 public function setStyle($style)
 {
     if (!is_string($style)) {
         $style = json_encode($style);
     }
     $this->entity->setStyle($style);
     return $this;
 }