~camptocamp/openerp-connector-magento/7.0-update-stock-1330450

« back to all changes in this revision

Viewing changes to magentoerpconnect/doc/guides/tutorial_customize.rst

  • Committer: Guewen Baconnier
  • Date: 2013-08-23 20:43:32 UTC
  • mto: This revision was merged to the branch mainline in revision 906.
  • Revision ID: guewen.baconnier@camptocamp.com-20130823204332-vgi06qf8oe5phzqt
[CHG] rename 'install_connector_module()' to 'install_in_connector()'

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
Each new module needs to be plugged in the connector's framework.
74
74
That's just a matter of following a convention and creating
75
75
``connector.py`` in which you will call the
76
 
``install_connector_module`` function::
77
 
 
78
 
    from openerp.addons.connector.connector import install_connector_module
79
 
 
80
 
 
81
 
    install_connector_module()
 
76
``install_in_connector`` function::
 
77
 
 
78
    from openerp.addons.connector.connector import install_in_connector
 
79
 
 
80
 
 
81
    install_in_connector()
82
82
 
83
83
.. warning:: If you miss this line of code, your custom ConnectorUnit
84
84
             classes won't be used.