Browse Source
Merge pull request #7 from Benniphx/social_media_icon_extention_tripadvisor
Merge pull request #7 from Benniphx/social_media_icon_extention_tripadvisor
[ADD] social_media_icon_extention_tripadvisorpull/29/head
Holger Brunn
9 years ago
16 changed files with 354 additions and 0 deletions
-
71social_media_tripadvisor/README.rst
-
21social_media_tripadvisor/__init__.py
-
42social_media_tripadvisor/__openerp__.py
-
22social_media_tripadvisor/models/__init__.py
-
32social_media_tripadvisor/models/res_config.py
-
31social_media_tripadvisor/models/website.py
-
BINsocial_media_tripadvisor/static/description/blog.png
-
BINsocial_media_tripadvisor/static/description/icon.png
-
28social_media_tripadvisor/static/description/index.html
-
BINsocial_media_tripadvisor/static/description/settings.png
-
BINsocial_media_tripadvisor/static/description/tripadvisor.jpg
-
BINsocial_media_tripadvisor/static/description/webpage.png
-
28social_media_tripadvisor/views/res_config.xml
-
20social_media_tripadvisor/views/website_blog_template.xml
-
35social_media_tripadvisor/views/website_templates.xml
-
24social_media_tripadvisor/views/website_views.xml
@ -0,0 +1,71 @@ |
|||||
|
|
||||
|
.. image:: https://github.com/blooparksystems/website/blob/8.0/website_social_media_icon_extention/static/description/tripadvisor.jpg?raw=true |
||||
|
:width: 100 |
||||
|
:target: http://www.tripadvisor.de |
||||
|
|
||||
|
Extend Social Media Links |
||||
|
========================= |
||||
|
|
||||
|
.. image:: https://github.com/blooparksystems/website/blob/8.0/website_social_media_icon_extention/static/description/settings.png?raw=true |
||||
|
:width: 700 |
||||
|
|
||||
|
.. image:: https://github.com/blooparksystems/website/blob/8.0/website_social_media_icon_extention/static/description/webpage.png?raw=true |
||||
|
:width: 700 |
||||
|
|
||||
|
Currently added: |
||||
|
|
||||
|
- Tripadvisor |
||||
|
|
||||
|
Info: |
||||
|
----- |
||||
|
|
||||
|
- By default, the icon will be shown on the footer, about us, and the Blog, like the original icons. |
||||
|
- This Addon will load the current CSS Version 4.4.0 from Fontawesome in the assets (29KB). |
||||
|
|
||||
|
Configuration |
||||
|
------------- |
||||
|
|
||||
|
- go in the backend under settings / website |
||||
|
- you can now also add your Tripadvisor Account |
||||
|
|
||||
|
Usage: |
||||
|
------ |
||||
|
|
||||
|
- normal social icons: |
||||
|
|
||||
|
<a t-att-href="website.social_facebook" t-if="website.social_facebook"><i class="fa fa-facebook-square"/></a> |
||||
|
|
||||
|
<a t-att-href="website.social_twitter" t-if="website.social_twitter"><i class="fa fa-twitter"/></a> |
||||
|
|
||||
|
<a t-att-href="website.social_linkedin" t-if="website.social_linkedin"><i class="fa fa-linkedin"/></a> |
||||
|
|
||||
|
<a t-att-href="website.social_youtube" t-if="website.social_youtube"><i class="fa fa-youtube-play"/></a> |
||||
|
|
||||
|
<a t-att-href="website.social_googleplus" t-if="website.social_googleplus"><i class="fa fa-google-plus-square"/></a> |
||||
|
|
||||
|
<a t-att-href="website.social_github" t-if="website.social_github"><i class="fa fa-github"/></a> |
||||
|
|
||||
|
- the new social icons: |
||||
|
|
||||
|
<a t-att-href="website.social_tripadvisor" t-if="website.social_tripadvisor"><i class="fa fa-tripadvisor"/></a> |
||||
|
|
||||
|
Credits |
||||
|
======= |
||||
|
|
||||
|
Contributors |
||||
|
------------ |
||||
|
|
||||
|
* Benjamin Bachmann (benniphx@gmail.com) |
||||
|
|
||||
|
Maintainer |
||||
|
---------- |
||||
|
|
||||
|
.. image:: http://odoo-community.org/logo.png |
||||
|
:alt: Odoo Community Association |
||||
|
:target: http://odoo-community.org |
||||
|
|
||||
|
This module is maintained by the OCA. |
||||
|
|
||||
|
OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. |
||||
|
|
||||
|
To contribute to this module, please visit http://odoo-community.org. |
@ -0,0 +1,21 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# Odoo, an open source suite of business apps |
||||
|
# This module copyright (C) 2015 bloopark systems (<http://bloopark.de>). |
||||
|
# |
||||
|
# This program is free software: you can redistribute it and/or modify |
||||
|
# it under the terms of the GNU Affero General Public License as |
||||
|
# published by the Free Software Foundation, either version 3 of the |
||||
|
# License, or (at your option) any later version. |
||||
|
# |
||||
|
# This program is distributed in the hope that it will be useful, |
||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
# GNU Affero General Public License for more details. |
||||
|
# |
||||
|
# You should have received a copy of the GNU Affero General Public License |
||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
from . import models |
@ -0,0 +1,42 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# Odoo, an open source suite of business apps |
||||
|
# This module copyright (C) 2015 bloopark systems (<http://bloopark.de>). |
||||
|
# |
||||
|
# This program is free software: you can redistribute it and/or modify |
||||
|
# it under the terms of the GNU Affero General Public License as |
||||
|
# published by the Free Software Foundation, either version 3 of the |
||||
|
# License, or (at your option) any later version. |
||||
|
# |
||||
|
# This program is distributed in the hope that it will be useful, |
||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
# GNU Affero General Public License for more details. |
||||
|
# |
||||
|
# You should have received a copy of the GNU Affero General Public License |
||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
{ |
||||
|
'name': "Tripadvisor Social Media Icon Extension", |
||||
|
'summary': """Tripadvisor Extension for the social media icons from the |
||||
|
odoo core""", |
||||
|
'author': "bloopark systems GmbH & Co. KG, " |
||||
|
"Odoo Community Association (OCA)", |
||||
|
'website': "http://www.bloopark.de", |
||||
|
'license': 'AGPL-3', |
||||
|
'category': 'Social Media', |
||||
|
'version': '8.0.1.0.0', |
||||
|
|
||||
|
'depends': [ |
||||
|
'website_blog' |
||||
|
], |
||||
|
|
||||
|
'data': [ |
||||
|
'views/website_templates.xml', |
||||
|
'views/website_views.xml', |
||||
|
'views/website_blog_template.xml', |
||||
|
'views/res_config.xml', |
||||
|
], |
||||
|
} |
@ -0,0 +1,22 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# Odoo, an open source suite of business apps |
||||
|
# This module copyright (C) 2015 bloopark systems (<http://bloopark.de>). |
||||
|
# |
||||
|
# This program is free software: you can redistribute it and/or modify |
||||
|
# it under the terms of the GNU Affero General Public License as |
||||
|
# published by the Free Software Foundation, either version 3 of the |
||||
|
# License, or (at your option) any later version. |
||||
|
# |
||||
|
# This program is distributed in the hope that it will be useful, |
||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
# GNU Affero General Public License for more details. |
||||
|
# |
||||
|
# You should have received a copy of the GNU Affero General Public License |
||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
from . import res_config |
||||
|
from . import website |
@ -0,0 +1,32 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# Odoo, an open source suite of business apps |
||||
|
# This module copyright (C) 2015 bloopark systems (<http://bloopark.de>). |
||||
|
# |
||||
|
# This program is free software: you can redistribute it and/or modify |
||||
|
# it under the terms of the GNU Affero General Public License as |
||||
|
# published by the Free Software Foundation, either version 3 of the |
||||
|
# License, or (at your option) any later version. |
||||
|
# |
||||
|
# This program is distributed in the hope that it will be useful, |
||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
# GNU Affero General Public License for more details. |
||||
|
# |
||||
|
# You should have received a copy of the GNU Affero General Public License |
||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
from openerp.models import TransientModel |
||||
|
from openerp import fields |
||||
|
|
||||
|
|
||||
|
class WebsiteConfigSettings(TransientModel): |
||||
|
|
||||
|
"""Adds the fields for Social Media Icons.""" |
||||
|
|
||||
|
_inherit = 'website.config.settings' |
||||
|
|
||||
|
social_tripadvisor = fields.Char('Tripadvisor Account', |
||||
|
related='website_id.social_tripadvisor') |
@ -0,0 +1,31 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# Odoo, an open source suite of business apps |
||||
|
# This module copyright (C) 2015 bloopark systems (<http://bloopark.de>). |
||||
|
# |
||||
|
# This program is free software: you can redistribute it and/or modify |
||||
|
# it under the terms of the GNU Affero General Public License as |
||||
|
# published by the Free Software Foundation, either version 3 of the |
||||
|
# License, or (at your option) any later version. |
||||
|
# |
||||
|
# This program is distributed in the hope that it will be useful, |
||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
# GNU Affero General Public License for more details. |
||||
|
# |
||||
|
# You should have received a copy of the GNU Affero General Public License |
||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
from openerp.models import Model |
||||
|
from openerp import fields |
||||
|
|
||||
|
|
||||
|
class Website(Model): |
||||
|
|
||||
|
"""Adds the fields for Social Media Icons.""" |
||||
|
|
||||
|
_inherit = 'website' |
||||
|
|
||||
|
social_tripadvisor = fields.Char('Tripadvisor Account') |
After Width: 294 | Height: 596 | Size: 43 KiB |
After Width: 128 | Height: 128 | Size: 9.2 KiB |
@ -0,0 +1,28 @@ |
|||||
|
<section class="oe_container"> |
||||
|
<div class="oe_row oe_spaced"> |
||||
|
<div class="oe_span12"> |
||||
|
<h3 class="oe_slogan"> |
||||
|
Social Media Icon Extention for |
||||
|
</h3> |
||||
|
</div> |
||||
|
<div class="oe_span6"> |
||||
|
<div> |
||||
|
<a href="http://www.tripadvisor.de/"> |
||||
|
<img class="oe_picture" |
||||
|
src="tripadvisor.jpg"> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="oe_span12"> |
||||
|
<p class="oe_mt32"> |
||||
|
Extend Social Media Links |
||||
|
</p> |
||||
|
</div> |
||||
|
<div class="oe_span12"> |
||||
|
<div> |
||||
|
<img class="oe_picture" |
||||
|
src="settings.png"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
After Width: 979 | Height: 322 | Size: 79 KiB |
After Width: 630 | Height: 348 | Size: 32 KiB |
After Width: 1295 | Height: 246 | Size: 66 KiB |
@ -0,0 +1,28 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<openerp> |
||||
|
<data> |
||||
|
|
||||
|
<record id="view_website_config_settings_ext" |
||||
|
model="ir.ui.view"> |
||||
|
<field name="name">Website settings</field> |
||||
|
<field name="model">website.config.settings</field> |
||||
|
<field name="inherit_id" ref="website.view_website_config_settings"/> |
||||
|
<field name="arch" |
||||
|
type="xml"> |
||||
|
<xpath expr="//div[@name='social_googleplus']" |
||||
|
position="after"> |
||||
|
|
||||
|
<label for="social_tripadvisor"/> |
||||
|
<div name="social_tripadvisor"> |
||||
|
<div class="oe_inline"> |
||||
|
<field name="social_tripadvisor" |
||||
|
placeholder="http://tripadvisor.de"/> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
</xpath> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
</data> |
||||
|
</openerp> |
@ -0,0 +1,20 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<openerp> |
||||
|
<data> |
||||
|
|
||||
|
<template id="opt_blog_rc_follow_us_extra" |
||||
|
name="Extra Social Links" |
||||
|
inherit_id="website_blog.opt_blog_rc_follow_us"> |
||||
|
<xpath expr="//h2[@class='mt4']" |
||||
|
position="after"> |
||||
|
|
||||
|
<a t-att-href="website.social_tripadvisor" |
||||
|
t-if="website.social_tripadvisor"> |
||||
|
<i class="fa fa-tripadvisor"></i> |
||||
|
</a> |
||||
|
|
||||
|
</xpath> |
||||
|
</template> |
||||
|
|
||||
|
</data> |
||||
|
</openerp> |
@ -0,0 +1,35 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<openerp> |
||||
|
<data> |
||||
|
|
||||
|
<template id="footer_default_extra" |
||||
|
inherit_id="website.footer_default"> |
||||
|
<xpath expr="//a[6]" |
||||
|
position="after"> |
||||
|
|
||||
|
<a t-att-href="website.social_tripadvisor" |
||||
|
t-if="website.social_tripadvisor"> |
||||
|
<i class="fa fa-tripadvisor"/> |
||||
|
</a> |
||||
|
|
||||
|
</xpath> |
||||
|
</template> |
||||
|
|
||||
|
|
||||
|
<!-- css and scripts --> |
||||
|
<template id="assets_frontend" |
||||
|
inherit_id="website.assets_frontend" |
||||
|
name="Social Media Icon" |
||||
|
priority="900"> |
||||
|
<xpath expr="." |
||||
|
position="inside"> |
||||
|
|
||||
|
<!-- version 4.4 of Fontawesome odoo uses only 4.0 --> |
||||
|
<link rel="stylesheet" |
||||
|
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"/> |
||||
|
|
||||
|
</xpath> |
||||
|
</template> |
||||
|
|
||||
|
</data> |
||||
|
</openerp> |
@ -0,0 +1,24 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<openerp> |
||||
|
<data> |
||||
|
|
||||
|
<record id="view_website_form_extra" |
||||
|
model="ir.ui.view"> |
||||
|
<field name="name">website.form</field> |
||||
|
<field name="model">website</field> |
||||
|
<field name="inherit_id" |
||||
|
ref="website.view_website_form"/> |
||||
|
<field name="arch" |
||||
|
type="xml"> |
||||
|
<field name="social_github" |
||||
|
position="after"> |
||||
|
|
||||
|
<field name="social_tripadvisor" |
||||
|
placeholder="http://tripadvisor.de"/> |
||||
|
|
||||
|
</field> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
</data> |
||||
|
</openerp> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue