[11/06/2024] Les premières modifs + installation de quelques modules indispensables
This commit is contained in:
16
domokits/local/modules/CanonicalUrl/Config/config.xml
Normal file
16
domokits/local/modules/CanonicalUrl/Config/config.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<?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="canonicalurl.meta.hook" class="CanonicalUrl\Hook\MetaHook" scope="request">
|
||||
<tag name="hook.event_listener" event="main.head-bottom" type="front" method="onMainHeadBottom" />
|
||||
<argument type="service" id="event_dispatcher" />
|
||||
</hook>
|
||||
<hook id="canonicalurl.seo.update.form" class="CanonicalUrl\Hook\SeoUpdateFormHook">
|
||||
<tag name="hook.event_listener" event="tab-seo.update-form" type="backoffice" method="addInputs"/>
|
||||
</hook>
|
||||
</hooks>
|
||||
</config>
|
||||
38
domokits/local/modules/CanonicalUrl/Config/module.xml
Normal file
38
domokits/local/modules/CanonicalUrl/Config/module.xml
Normal file
@@ -0,0 +1,38 @@
|
||||
<?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_2.xsd">
|
||||
<fullnamespace>CanonicalUrl\CanonicalUrl</fullnamespace>
|
||||
<descriptive locale="en_US">
|
||||
<title>Adds the canonical Url in the metas of your site</title>
|
||||
</descriptive>
|
||||
<descriptive locale="fr_FR">
|
||||
<title>Ajoute l'Url canonique dans les metas de votre site</title>
|
||||
</descriptive>
|
||||
<languages>
|
||||
<language>en_US</language>
|
||||
<language>fr_FR</language>
|
||||
</languages>
|
||||
<version>2.1.6</version>
|
||||
<authors>
|
||||
<author>
|
||||
<name>Gilles Bourgeat</name>
|
||||
<email>gilles.bourgeat@gmail.com</email>
|
||||
<website>https://github.com/gillesbourgeat</website>
|
||||
</author>
|
||||
<author>
|
||||
<name>Franck Allimant</name>
|
||||
<company>CQFDev</company>
|
||||
<email>franck@cqfdev.fr</email>
|
||||
<website>www.cqfdev.fr</website>
|
||||
</author>
|
||||
<author>
|
||||
<name>Vincent Lopes-Vicente</name>
|
||||
<company>OpenStudio</company>
|
||||
<email>vlopes@openstudio.fr</email>
|
||||
</author>
|
||||
</authors>
|
||||
<type>classic</type>
|
||||
<thelia>2.5.0</thelia>
|
||||
<stability>prod</stability>
|
||||
</module>
|
||||
7
domokits/local/modules/CanonicalUrl/Config/routing.xml
Normal file
7
domokits/local/modules/CanonicalUrl/Config/routing.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?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">
|
||||
|
||||
</routes>
|
||||
Reference in New Issue
Block a user