aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/DoctrineMigrations
diff options
context:
space:
mode:
authorKevin Decherf <kevin@kdecherf.com>2017-11-25 17:06:01 +0100
committerKevin Decherf <kevin@kdecherf.com>2017-11-25 17:07:55 +0100
commit893fd6434f11b6a1fef375f19e6ea427402bc605 (patch)
treeabfab5d6303ca3bb5996e2e98fbfdc6bc804ba45 /app/DoctrineMigrations
parent773ac5b0f7a56ff2527601498b0822d6ef8bfa40 (diff)
downloadwallabag-893fd6434f11b6a1fef375f19e6ea427402bc605.tar.gz
wallabag-893fd6434f11b6a1fef375f19e6ea427402bc605.tar.zst
wallabag-893fd6434f11b6a1fef375f19e6ea427402bc605.zip
Add craue setting to enable sharing of origin url to Shaarli
Also fix the field name used in the query string and add it to baggy theme Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
Diffstat (limited to 'app/DoctrineMigrations')
-rw-r--r--app/DoctrineMigrations/Version20171125164500.php52
1 files changed, 52 insertions, 0 deletions
diff --git a/app/DoctrineMigrations/Version20171125164500.php b/app/DoctrineMigrations/Version20171125164500.php
new file mode 100644
index 00000000..980e0e75
--- /dev/null
+++ b/app/DoctrineMigrations/Version20171125164500.php
@@ -0,0 +1,52 @@
1<?php
2
3namespace Application\Migrations;
4
5use Doctrine\DBAL\Migrations\AbstractMigration;
6use Doctrine\DBAL\Schema\Schema;
7use Symfony\Component\DependencyInjection\ContainerAwareInterface;
8use Symfony\Component\DependencyInjection\ContainerInterface;
9
10/**
11 * Add shaarli_share_origin_url in craue_config_setting.
12 */
13class Version20171125164500 extends AbstractMigration implements ContainerAwareInterface
14{
15 /**
16 * @var ContainerInterface
17 */
18 private $container;
19
20 public function setContainer(ContainerInterface $container = null)
21 {
22 $this->container = $container;
23 }
24
25 /**
26 * @param Schema $schema
27 */
28 public function up(Schema $schema)
29 {
30 $shaarliShareOriginUrl = $this->container
31 ->get('doctrine.orm.default_entity_manager')
32 ->getConnection()
33 ->fetchArray('SELECT * FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'shaarli_share_origin_url'");
34
35 $this->skipIf(false !== $shaarliShareOriginUrl, 'It seems that you already played this migration.');
36
37 $this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('shaarli_share_origin_url', '0', 'entry')");
38 }
39
40 /**
41 * @param Schema $schema
42 */
43 public function down(Schema $schema)
44 {
45 $this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'shaarli_share_origin_url';");
46 }
47
48 private function getTable($tableName)
49 {
50 return $this->container->getParameter('database_table_prefix') . $tableName;
51 }
52}