Post by rmullaney77 » Tue Dec 29, 2015 2:56 pm

<RANT>

Seems with each recent version things keep changing in OCMOD. Continuous micro-changes in MINOR/BUILD/REVISION updates means we have to keep tracking down what you guys are changing with each new release.

I just finished a mod that had to work with the new admin path for the customer controller (moved in 2.1.0.1). While that would have been insignificant, you also changed the path delimiters from COMMA to PIPE. This could only be tackled with duplication of the exact same OPERATION code to cover both potential PATHS of the same file. OCMOD pathing was also affected not too long ago by the removal of GLOB earlier in 2.x.

For those of us making a decent amount, providing ongoing support, and keeping our extensions updated... this is becoming a pain. How about we stop changing OCMOD until 3.x? I have yet to run into any issue that cannot be done with a firm understanding of how the OCMOD system works.

Those who don't get it should read the code in admin/controller/extension/modification.php ... if they still don't understand it, well maybe it's time they actually learn PHP ;)

</RANT>

:P

--------------------------------------------------
My BlogMy ExtensionsOpenCart Templates


User avatar
Active Member

Posts

Joined
Fri Nov 19, 2010 2:08 am
Location - Tampa, Florida

User avatar
Guru Member

Posts

Joined
Wed Dec 05, 2007 3:38 am


Post by OSWorX » Wed Dec 30, 2015 6:34 am

JNeuhoff wrote:There are better alternatives to OCmod:

Opencart Events
Well .. maybe.
But these events are also changing more often I can change my underwear!
For example, starting with 2.1.x the methods are completely different - to compare see https://github.com/opencart/opencart/wi ... 29-2.0.0.1

And the wiki page for the 2.1.+ events look like as it was written by an 8 year old child and is not complete.
And I am missing a fully working example there.

So who is preventing Kerr to change that again with the next version??
Since 1.5.x it can be frustrating to develop extensions that need VQMod, OCMod or Events.
Or every developer has to build for each subversion a new module - a good cashcow for some as can be seen at some extensions in the extension store.

Full Stack Web Developer :: Dedicated OpenCart Development & Support DACH Region
Contact for Custom Work / Fast Support.


User avatar
Guru Member

Posts

Joined
Mon Jan 11, 2010 10:52 pm
Location - Austria

Post by JNeuhoff » Thu Dec 31, 2015 2:27 am

About the Opencart events: The big changes for these are actually about to be introduced in 2.1.0.2_rc or later. And while it will require changes to be made for the event trigger names, it won't be difficult. The new events system will be much more powerful, as it allows events to be triggered for any of these:

before and after any controller action
before and after any called model method
before and after any view

For example, you could define events for any of these triggers for the frontend category page:

'controller/product/category/before'
'controller/product/category/after'

'model/catalog/category/getCategory/before'
'model/catalog/category/getCategory/after'
....
'model/catalog/category/getTotalCategoriesByCategoryId/before'
'model/catalog/category/getTotalCategoriesByCategoryId/after'

'view/product/category/before'
'view/product/category/after'

I am pretty certain that this new event system will be much more useful, and will stay like this for a long time.

Mind you, the Override Engine is still more powerful IMHO :) , but for many simple cases, like adding entries to the admin backend menus for new 3rd party extensions, the events system will do its job now!

Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig


User avatar
Guru Member

Posts

Joined
Wed Dec 05, 2007 3:38 am


Post by Grandstand » Sun Jan 10, 2016 8:49 am

JNeuhoff wrote:About the Opencart events: The big changes for these are actually about to be introduced in 2.1.0.2_rc or later.
Does this mean the events are not working now? I am trying to code an event for Version 2.1.0.1.
Trigger = admin/controller/catalog/product/getForm/before.
Action = module/mymod/my_method

but it never triggers, I can see it in the database but the trigger is completely different than the one that is in there by default:

Trigger =post.order.history.add

Am I missing something or is this events notification system just not up and running yet?

New member

Posts

Joined
Sat Aug 27, 2011 8:03 am

Post by OSWorX » Sun Jan 10, 2016 5:26 pm

Grandstand wrote:
JNeuhoff wrote:About the Opencart events: The big changes for these are actually about to be introduced in 2.1.0.2_rc or later.
Does this mean the events are not working now? I am trying to code an event for Version 2.1.0.1.
Trigger = admin/controller/catalog/product/getForm/before.
Action = module/mymod/my_method

but it never triggers, I can see it in the database but the trigger is completely different than the one that is in there by default:

Trigger =post.order.history.add

Am I missing something or is this events notification system just not up and running yet?
That is exactly what I meant.
The wiki pages are outdated and incomplete.
Events are currently not useable - or did I missed some?

Full Stack Web Developer :: Dedicated OpenCart Development & Support DACH Region
Contact for Custom Work / Fast Support.


User avatar
Guru Member

Posts

Joined
Mon Jan 11, 2010 10:52 pm
Location - Austria

Post by Grandstand » Tue Jan 12, 2016 4:39 am

OSWorX wrote:Events are currently not useable?
Well isn't that wonderful! Events aren't working and OCmod only works to a limited extent! Sounds like v2 isn't really ready for production use yet.

New member

Posts

Joined
Sat Aug 27, 2011 8:03 am

Post by Johnathan » Wed Jan 13, 2016 1:01 am

OpenCart 2 is fine -- just use vQmod. Almost all extensions are either vQmod-only, or provide both vQmod and ocMod files for edits, so you should be good if you install vQmod.

Image Image Image Image Image


User avatar
Administrator

Posts

Joined
Fri Dec 18, 2009 3:08 am


Post by rmullaney77 » Mon Mar 21, 2016 7:13 am

Slightly unrelated, but it was my rant so here goes...

Would love it if things would stop moving from one controller to another between MINOR version updates. Took me a while to figure out the zone() function had been removed in favor of country() for loading localization drop-downs.

It really is a huge pain to keep having to track all this down when it is not easily found in the changelogs. :'(
Johnathan wrote:Almost all extensions are either vQmod-only
Lazy devs... I defended OCMOD early on when people were complaining about how it didn't work. When it fact it did, just had $#!t documentation and was not exactly the same as vqmod so they had to LEARN something new.

--------------------------------------------------
My BlogMy ExtensionsOpenCart Templates


User avatar
Active Member

Posts

Joined
Fri Nov 19, 2010 2:08 am
Location - Tampa, Florida

Post by Johnathan » Mon Mar 21, 2016 10:34 pm

rmullaney77 wrote:Lazy devs...
That's a pretty broad blanket statement to make. All my extensions are vQmod-only --- by choice --- and I think you'd have a hard time finding anyone who would call me lazy.

For more discussion on why developers prefer vQmod over ocMod, you should read this topic:

http://forum.opencart.com/viewtopic.php?f=183&t=149484

Image Image Image Image Image


User avatar
Administrator

Posts

Joined
Fri Dec 18, 2009 3:08 am

Who is online

Users browsing this forum: No registered users and 79 guests