src/Flexy/FrontBundle/Entity/Page.php line 15

  1. <?php
  2. namespace App\Flexy\FrontBundle\Entity;
  3. use ApiPlatform\Core\Annotation\ApiResource;
  4. use App\Flexy\FrontBundle\Repository\PageRepository;
  5. use Gedmo\Mapping\Annotation as Gedmo;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use App\Entity\Link;
  9. #[ApiResource]
  10. #[ORM\Entity(repositoryClassPageRepository::class)]
  11. #[Gedmo\SoftDeleteable(fieldName'deletedAt'timeAwarefalsehardDeletetrue)]
  12. class Page
  13. {
  14.     #[ORM\Id]
  15.     #[ORM\GeneratedValue]
  16.     #[ORM\Column(type'integer')]
  17.     private $id;
  18.     #[ORM\Column(type'string'length255)]
  19.      private $title;
  20.      
  21.     #[ORM\Column(type'text'nullabletrue)]
  22.     private ?string $content null;
  23.         #[ORM\Column(type'json'nullabletrue)]
  24.     private $jsonContent=[];
  25.     #[ORM\Column(type'json'nullabletrue)]
  26.     private $jsonSimplifiedContent;
  27.     #[ORM\Column(type'datetime'nullabletrue)]
  28.     private ?\DateTimeInterface $createdAt null;
  29.     /**
  30.      * @Gedmo\Slug(fields={"title"})
  31.      */
  32.     #[Gedmo\Slug(fields: ['title'])]
  33.     #[ORM\Column(type'string'length255nullabletrue)]
  34.     private ?string $slug null;
  35.     
  36.     #[ORM\Column(type'boolean'nullabletrue)]
  37.     private ?bool $isEnabled null;
  38.     #[ORM\OneToOne(targetEntityLink::class, cascade: ['persist''remove'])]
  39.     #[ORM\JoinColumn(nullabletrueonDelete'CASCADE')]
  40.     private $link;
  41.     #[ORM\Column(type'boolean'nullabletrue)]
  42.     private $isLiveEditor;
  43.         #[ORM\Column(type'string'length255nullabletrue)]
  44.     private $pageEditor="summernote";
  45.         #[ORM\Column(typeTypes::TEXTnullabletrue)]
  46.         private ?string $description null;
  47.         #[ORM\Column(nullabletrue)]
  48.     private ?\DateTimeImmutable $deletedAt null;
  49.     public function getId(): ?int
  50.     {
  51.         return $this->id;
  52.     }
  53.     public function getContent(): ?string
  54.     {
  55.         return $this->content;
  56.     }
  57.     public function setContent(?string $content): self
  58.     {
  59.         $this->content $content;
  60.         return $this;
  61.     }
  62.     public function getCreatedAt(): ?\DateTimeInterface
  63.     {
  64.         return $this->createdAt;
  65.     }
  66.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  67.     {
  68.         $this->createdAt $createdAt;
  69.         return $this;
  70.     }
  71.     public function getSlug(): ?string
  72.     {
  73.         return $this->slug;
  74.     }
  75.     public function setSlug(string $slug): self
  76.     {
  77.         $this->slug $slug;
  78.         return $this;
  79.     }
  80.     public function getIsEnabled(): ?bool
  81.     {
  82.         return $this->isEnabled;
  83.     }
  84.     public function setIsEnabled(?bool $isEnabled): self
  85.     {
  86.         $this->isEnabled $isEnabled;
  87.         return $this;
  88.     }
  89.      /**
  90.       * Get the value of title
  91.       */ 
  92.      public function getTitle()
  93.      {
  94.           return $this->title;
  95.      }
  96.      /**
  97.       * Set the value of title
  98.       *
  99.       * @return  self
  100.       */ 
  101.      public function setTitle($title)
  102.      {
  103.           $this->title $title;
  104.           return $this;
  105.      }
  106.     /**
  107.      * Get the value of link
  108.      */ 
  109.     public function getLink()
  110.     {
  111.         return $this->link;
  112.     }
  113.     /**
  114.      * Set the value of link
  115.      *
  116.      * @return  self
  117.      */ 
  118.     public function setLink($link)
  119.     {
  120.         $this->link $link;
  121.         return $this;
  122.     }
  123.     /**
  124.      * Get the value of jsonContent
  125.      */ 
  126.     public function getJsonContent()
  127.     {
  128.         if($this->jsonContent==null){
  129.             return [];
  130.         }
  131.         return $this->jsonContent;
  132.     }
  133.     /**
  134.      * Set the value of jsonContent
  135.      *
  136.      * @return  self
  137.      */ 
  138.     public function setJsonContent($jsonContent)
  139.     {
  140.         $this->jsonContent $jsonContent;
  141.         return $this;
  142.     }
  143.     public function jsonContentCSS() {
  144.         $contents $this->jsonSimplifiedContent;
  145.         $css '';
  146.         //dd($this->jsonContent);
  147.         foreach ($contents as $singleContent) {
  148.             $css $css.$singleContent["css"];
  149.         }
  150.         
  151.         return $css;
  152.     }
  153.     public function jsonContentHTML() {
  154.         $contents $this->jsonSimplifiedContent;
  155.         $html '';
  156.         //dd($this->jsonContent);
  157.         foreach ($contents as $singleContent) {
  158.             $html $html.$singleContent["html"];
  159.         }
  160.         
  161.         return $html;
  162.     }
  163.     public function jsonContentToHtml() {
  164.         $obj $this->jsonContent;
  165.         $html '';
  166.         //dd($this->jsonContent);
  167.         foreach ($obj["blocks"] as $block) {
  168.             switch ($block["type"]) {
  169.                 case 'paragraph':
  170.                     $html .= '<p>' $block["data"]["text"] . '</p>';
  171.                     break;
  172.                 
  173.                 case 'header':
  174.                     $html .= '<h'$block["data"]["level"] .'>' $block["data"]["text"] . '</h'$block["data"]["level"] .'>';
  175.                     break;
  176.                 case 'raw':
  177.                     $html .= $block["data"]["html"];
  178.                     break;
  179.                 case 'list':
  180.                     $lsType = ($block["data"]["style"] == 'ordered') ? 'ol' 'ul';
  181.                     $html .= '<' $lsType '>';
  182.                     foreach($block["data"]["items"] as $item) {
  183.                         $html .= '<li>' $item '</li>';
  184.                     }
  185.                     $html .= '</' $lsType '>';
  186.                     break;
  187.                 
  188.                 case 'code':
  189.                     $html .= '<pre><code class="language-'$block["data"]["lang"] .'">'$block["data"]["code"] .'</code></pre>';
  190.                     break;
  191.                 
  192.                 case 'image':
  193.                     $html .= '<div class="img_pnl"><img src="'$block["data"]["file"]["url"]->url .'" /></div>';
  194.                     break;
  195.                 
  196.                 default:
  197.                     break;
  198.             }
  199.         }
  200.         
  201.         return $html;
  202.     }
  203.     /**
  204.      * Get the value of isLiveEditor
  205.      */ 
  206.     public function getIsLiveEditor()
  207.     {
  208.         return $this->isLiveEditor;
  209.     }
  210.     /**
  211.      * Set the value of isLiveEditor
  212.      *
  213.      * @return  self
  214.      */ 
  215.     public function setIsLiveEditor($isLiveEditor)
  216.     {
  217.         $this->isLiveEditor $isLiveEditor;
  218.         return $this;
  219.     }
  220.     /**
  221.      * Get the value of pageEditor
  222.      */ 
  223.     public function getPageEditor()
  224.     {
  225.         return $this->pageEditor;
  226.     }
  227.     /**
  228.      * Set the value of pageEditor
  229.      *
  230.      * @return  self
  231.      */ 
  232.     public function setPageEditor($pageEditor)
  233.     {
  234.         $this->pageEditor $pageEditor;
  235.         return $this;
  236.     }
  237.     /**
  238.      * Get the value of jsonSimplifiedContent
  239.      */ 
  240.     public function getJsonSimplifiedContent()
  241.     {
  242.         return $this->jsonSimplifiedContent;
  243.     }
  244.     /**
  245.      * Set the value of jsonSimplifiedContent
  246.      *
  247.      * @return  self
  248.      */ 
  249.     public function setJsonSimplifiedContent($jsonSimplifiedContent)
  250.     {
  251.         $this->jsonSimplifiedContent $jsonSimplifiedContent;
  252.         return $this;
  253.     }
  254.     public function getDescription(): ?string
  255.     {
  256.         return $this->description;
  257.     }
  258.     public function setDescription(?string $description): self
  259.     {
  260.         $this->description $description;
  261.         return $this;
  262.     }
  263. }