Browse Source
Merge pull request #6 from Benniphx/social_media_icon_extention_dribbble
Merge pull request #6 from Benniphx/social_media_icon_extention_dribbble
[ADD] social_media_icon_extention_dribbblepull/29/head
Holger Brunn
9 years ago
16 changed files with 339 additions and 0 deletions
-
70social_media_dribbble/README.rst
-
21social_media_dribbble/__init__.py
-
44social_media_dribbble/__openerp__.py
-
22social_media_dribbble/models/__init__.py
-
32social_media_dribbble/models/res_config.py
-
31social_media_dribbble/models/website.py
-
BINsocial_media_dribbble/static/description/blog.png
-
BINsocial_media_dribbble/static/description/dribbble.png
-
BINsocial_media_dribbble/static/description/icon.png
-
28social_media_dribbble/static/description/index.html
-
BINsocial_media_dribbble/static/description/settings.png
-
BINsocial_media_dribbble/static/description/webpage.png
-
28social_media_dribbble/views/res_config.xml
-
20social_media_dribbble/views/website_blog_template.xml
-
19social_media_dribbble/views/website_templates.xml
-
24social_media_dribbble/views/website_views.xml
@ -0,0 +1,70 @@ |
|||
|
|||
.. image:: https://github.com/blooparksystems/website/blob/8.0/website_social_media_icon_extention/static/description/dribbble.png?raw=true |
|||
:width: 100 |
|||
:target: https://dribbble.com |
|||
|
|||
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: |
|||
|
|||
- Dribbble |
|||
|
|||
Info: |
|||
----- |
|||
|
|||
- By default, the icon will be shown on the footer, about us, and the Blog, like the original icons. |
|||
|
|||
Configuration |
|||
------------- |
|||
|
|||
- go in the backend under settings / website |
|||
- you can now also add your Dribbble 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_dribbble" t-if="website.social_dribbble"><i class="fa fa-dribbble"/></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,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': "Dribbble Social Media Icon Extension", |
|||
'summary': """Dribbble 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': [ |
|||
'base', |
|||
'website', |
|||
'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_dribbble = fields.Char('Dribbble Account', |
|||
related='website_id.social_dribbble') |
@ -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_dribbble = fields.Char('Dribbble Account') |
After Width: 294 | Height: 596 | Size: 43 KiB |
After Width: 400 | Height: 300 | Size: 26 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="https://dribbble.com/"> |
|||
<img class="oe_picture" |
|||
src="dribbble.png"> |
|||
</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: 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_dribbble"/> |
|||
<div name="social_dribbble"> |
|||
<div class="oe_inline"> |
|||
<field name="social_dribbble" |
|||
placeholder="https://dribbble.com"/> |
|||
</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_dribbble" |
|||
t-if="website.social_dribbble"> |
|||
<i class="fa fa-dribbble"/> |
|||
</a> |
|||
|
|||
</xpath> |
|||
</template> |
|||
|
|||
</data> |
|||
</openerp> |
@ -0,0 +1,19 @@ |
|||
<?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_dribbble" |
|||
t-if="website.social_dribbble"> |
|||
<i class="fa fa-dribbble"/> |
|||
</a> |
|||
|
|||
</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_dribbble" |
|||
placeholder="http://dribbble.com"/> |
|||
|
|||
</field> |
|||
</field> |
|||
</record> |
|||
|
|||
</data> |
|||
</openerp> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue