Initial commit

This commit is contained in:
2020-01-27 08:56:08 +01:00
commit b7525048d6
27129 changed files with 3409855 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<dwsync>
<file name="config.xml" server="51.254.220.106//web/" local="131360681400000000" remote="131360681400000000" />
<file name="module.xml" server="51.254.220.106//web/" local="131360681400000000" remote="131360681400000000" />
<file name="routing.xml" server="51.254.220.106//web/" local="131360681400000000" remote="131360681400000000" />
</dwsync>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" ?>
<config xmlns="http://thelia.net/schema/dic/config"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://thelia.net/schema/dic/config http://thelia.net/schema/dic/config/thelia-1.0.xsd">
<hooks>
<hook id="opengraph.hook" class="OpenGraph\Hook\OpenGraphHook" scope="request">
<tag name="hook.event_listener" event="module.configuration" type="back" method="onModuleConfiguration" />
<tag name="hook.event_listener" event="main.head-bottom" type="front" method="onMainHeadBottom" />
<tag name="hook.event_listener" event="main.body-bottom" type="front" method="openGraphSharingButtons" />
<tag name="hook.event_listener" event="main.stylesheet" type="front" method="onMainStylesheet" />
</hook>
</hooks>
<forms>
<form name="open.graph.configuration.form" class="OpenGraph\Form\OpenGraphConfigurationForm" />
</forms>
</config>

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<module xmlns="http://thelia.net/schema/dic/module"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://thelia.net/schema/dic/module http://thelia.net/schema/dic/module/module-2_1.xsd">
<fullnamespace>OpenGraph\OpenGraph</fullnamespace>
<descriptive locale="en_US">
<title>Social media sharing management module</title>
</descriptive>
<descriptive locale="fr_FR">
<title>Module de gestion de partage sur les réseaux sociaux</title>
</descriptive>
<languages>
<language>en_US</language>
<language>fr_FR</language>
</languages>
<version>1.0.1</version>
<author>
<name>Thomas Arnaud</name>
<email>tarnaud@openstudio.fr</email>
</author>
<type>classic</type>
<thelia>2.1.7</thelia>
<stability>beta</stability>
</module>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" ?>
<routes xmlns="http://symfony.com/schema/routing"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd">
<route id="open.graph.config.save" path="/admin/module/OpenGraph/save" methods="post">
<default key="_controller">OpenGraph\Controller\OpenGraphController::saveAction</default>
</route>
</routes>