Phillys93 Posted September 5, 2013 Share Posted September 5, 2013 How do I make use of PS built-in functions and classes when developing modules? Link to comment Share on other sites More sharing options...
bellini13 Posted September 5, 2013 Share Posted September 5, 2013 you simply instantiate the class $order = new Order($id_order); You now have access to all of the order information. Link to comment Share on other sites More sharing options...
PascalVG Posted September 6, 2013 Share Posted September 6, 2013 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now