1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- * This file is part of the ForkBB <https://github.com/forkbb>.
- *
- * @copyright (c) Visman <mio.visman@yandex.ru, https://github.com/MioVisman>
- * @license The MIT License (MIT)
- */
- declare(strict_types=1);
- namespace ForkBB\Models\BBCodeList;
- use ForkBB\Models\Method;
- use ForkBB\Models\BBCodeList\Structure;
- use RuntimeException;
- class Insert extends Method
- {
- /**
- * Добавляет bb-код в базу
- */
- public function insert(Structure $structure): int
- {
- if (null !== $structure->getError()) {
- throw new RuntimeException('BBCode structure has error');
- }
- $this->model->reset(); // ????
- $vars = [
- ':tag' => $structure->tag,
- ':structure' => $structure->toString(),
- ];
- $query = 'INSERT INTO ::bbcode (bb_tag, bb_edit, bb_delete, bb_structure)
- VALUES (?s:tag, 1, 1, ?s:structure)';
- $this->c->DB->exec($query, $vars);
- return (int) $this->c->DB->lastInsertId();
- }
- }
|