Browse Source

[ADD] social_media_icon_extention_tripadvisor

pull/7/head
Benjamin Bachmann 9 years ago
parent
commit
dac4253de5
  1. 67
      social_media_icon_extention_tripadvisor/README.md
  2. 21
      social_media_icon_extention_tripadvisor/__init__.py
  3. 44
      social_media_icon_extention_tripadvisor/__openerp__.py
  4. 22
      social_media_icon_extention_tripadvisor/models/__init__.py
  5. 32
      social_media_icon_extention_tripadvisor/models/res_config.py
  6. 31
      social_media_icon_extention_tripadvisor/models/website.py
  7. BIN
      social_media_icon_extention_tripadvisor/static/description/blog.png
  8. BIN
      social_media_icon_extention_tripadvisor/static/description/icon.png
  9. 28
      social_media_icon_extention_tripadvisor/static/description/index.html
  10. BIN
      social_media_icon_extention_tripadvisor/static/description/settings.png
  11. BIN
      social_media_icon_extention_tripadvisor/static/description/tripadvisor.jpg
  12. BIN
      social_media_icon_extention_tripadvisor/static/description/webpage.png
  13. 28
      social_media_icon_extention_tripadvisor/views/res_config.xml
  14. 20
      social_media_icon_extention_tripadvisor/views/website_blog_template.xml
  15. 35
      social_media_icon_extention_tripadvisor/views/website_templates.xml
  16. 24
      social_media_icon_extention_tripadvisor/views/website_views.xml

67
social_media_icon_extention_tripadvisor/README.md

@ -0,0 +1,67 @@
<center>
<a href="http://www.tripadvisor.de/">
<img class="oe_picture" width="100" src="https://github.com/blooparksystems/website/blob/8.0/website_social_media_icon_extention/static/description/tripadvisor.jpg?raw=true">
</a>
Extend Social Media Links
=========================
<img class="oe_picture" width="700" src="https://github.com/blooparksystems/website/blob/8.0/website_social_media_icon_extention/static/description/settings.png?raw=true">
<img class="oe_picture" width="700" src="https://github.com/blooparksystems/website/blob/8.0/website_social_media_icon_extention/static/description/webpage.png?raw=true">
Currently added:
Xing / Dribbble / Tripadvisor
</center>
Additional Info:
----------------
This Addon will load the current CSS Version 4.4.0 from Fontawesome in the assets (29KB).
Integration example:
--------------------
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
----------
<a href="http://odoo-community.org">
<img class="oe_picture" alt="Odoo Community Association" src="http://odoo-community.org/logo.png">
</a>
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 <a href="http://odoo-community.org">http://odoo-community.org</a>.

21
social_media_icon_extention_tripadvisor/__init__.py

@ -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

44
social_media_icon_extention_tripadvisor/__openerp__.py

@ -0,0 +1,44 @@
# -*- 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': '1.0',
'depends': [
'base',
'website',
'website_blog'
],
'data': [
'views/website_templates.xml',
'views/website_views.xml',
'views/website_blog_template.xml',
'views/res_config.xml',
],
}

22
social_media_icon_extention_tripadvisor/models/__init__.py

@ -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

32
social_media_icon_extention_tripadvisor/models/res_config.py

@ -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')

31
social_media_icon_extention_tripadvisor/models/website.py

@ -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')

BIN
social_media_icon_extention_tripadvisor/static/description/blog.png

After

Width: 294  |  Height: 596  |  Size: 43 KiB

BIN
social_media_icon_extention_tripadvisor/static/description/icon.png

After

Width: 128  |  Height: 128  |  Size: 9.2 KiB

28
social_media_icon_extention_tripadvisor/static/description/index.html

@ -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>

BIN
social_media_icon_extention_tripadvisor/static/description/settings.png

After

Width: 979  |  Height: 322  |  Size: 79 KiB

BIN
social_media_icon_extention_tripadvisor/static/description/tripadvisor.jpg

After

Width: 630  |  Height: 348  |  Size: 32 KiB

BIN
social_media_icon_extention_tripadvisor/static/description/webpage.png

After

Width: 1295  |  Height: 246  |  Size: 66 KiB

28
social_media_icon_extention_tripadvisor/views/res_config.xml

@ -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>

20
social_media_icon_extention_tripadvisor/views/website_blog_template.xml

@ -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>

35
social_media_icon_extention_tripadvisor/views/website_templates.xml

@ -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>

24
social_media_icon_extention_tripadvisor/views/website_views.xml

@ -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>
Loading…
Cancel
Save