persist() публичный Метод

public persist ( Bolt\Storage\QuerySet $queries, $entity )
$queries Bolt\Storage\QuerySet
Пример #1
0
 /**
  * {@inheritdoc}
  */
 public function persist(QuerySet $queries, $entity)
 {
     if ($entity->getSlug() === null) {
         // When no slug value is given, generate a pseudo-random reasonably unique one.
         $entity->setSlug('slug-' . md5(mt_rand()));
     }
     parent::persist($queries, $entity);
 }
Пример #2
0
 /**
  * {@inheritdoc}
  */
 public function persist(QuerySet $queries, $entity, EntityManager $em = null)
 {
     $key = $this->mapping['fieldname'];
     $value = $entity->get($key);
     if (!$value instanceof \DateTime && $value !== null) {
         $value = new Carbon($value);
         $value::setToStringFormat('Y-m-d');
         $entity->set($key, $value);
     }
     parent::persist($queries, $entity, $em);
 }
Пример #3
0
 /**
  * {@inheritdoc}
  */
 public function persist(QuerySet $queries, $entity)
 {
     $key = $this->mapping['fieldname'];
     $value = $entity->get($key);
     // Only sanitize when type is string, and not when the name is one of the Bolt-system ones.
     // Finally, we skip this if the value is empty-ish, e.g. '' or `null`.
     if ($this->mapping['type'] === 'string' && !in_array($key, ['username', 'status']) && !empty($value)) {
         $entity->set($key, $this->getSanitiser()->sanitise($value));
     }
     parent::persist($queries, $entity);
 }
Пример #4
0
 /**
  * {@inheritdoc}
  */
 public function persist(QuerySet $queries, $entity)
 {
     $key = $this->mapping['fieldname'];
     $value = $entity->get($key);
     // Note: The following section is commented out, because it was
     // sanitising fields when not desired. See #5789, for details.
     // Only sanitize when type is string, and not when the name is one of the Bolt-system ones.
     // Finally, we skip this if the value is empty-ish, e.g. '' or `null`.
     // if ($this->mapping['type'] === 'string' && !in_array($key, ['username', 'status']) && !empty($value)) {
     //     $entity->set($key, $this->getSanitiser()->sanitise($value));
     // }
     parent::persist($queries, $entity);
 }
Пример #5
0
 /**
  * {@inheritdoc}
  */
 public function persist(QuerySet $queries, $entity, EntityManager $em = null)
 {
     $key = $this->mapping['fieldname'];
     $value = $entity->get($key);
     if ($value !== null) {
         $value = $this->isJson($value) ? json_decode($value, true) : $value;
         // Remove elements that are not important for storage.
         foreach ($value as &$v) {
             unset($v['id']);
             unset($v['order']);
             unset($v['progress']);
             unset($v['element']);
         }
     }
     $entity->set($key, $value);
     parent::persist($queries, $entity, $em);
 }