Jump to content

Make us of PS classes and functiona in module?


Phillys93

Recommended Posts

Hi Phillys,

 

To add to Bellini's response, there are some 'static public functions' you can refer to /use like this:

Currency::getCurrencies()  , where Currency is the class name. For these static public functions, you don't need to instantiate an object first (i.e. new order() ), but can use them directly.

 

After creating the $order object like Bellini described, you can use it's functions like this:

$order->getTotalWeight();

 

and access it's attribute values like this

$order->invoice_date

 

My 2 cents,

pascal

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...