5.7 Add-On Developers Guide, Part 1
Permalink 3 users found helpfulhttp://andrewembler.com/posts/concrete5-5-7-add-on-development-part...
It's also cross-posted here for posterity:
http://www.concrete5.org/documentation/how-tos/developers/concrete5...
Thanks! 5.7 is still very much a work in progress so as you undertake migrating to it you might find certain aspects of it half-done. Please post issues here as you uncover them:
https://github.com/concrete5/concrete5-5.7.0...
Thanks everyone.

Sent from my iPhone
> On Apr 23, 2014, at 12:16 AM, concrete5 Community <discussions@concretecms.com> wrote:
C
I keep getting type errors, I changed all the "type" attributes tohttp://doctrine-dbal.readthedocs.org/en/latest/reference/types.html... to no avail.
C
C
use \Concrete\Core\Attribute\Set as AttributeSet;
C
Looks like /concrete/core/legacy/loader.php helper() allows for passing a $pkg but does not rout properly.
What should our package folder structure be for helpers now? follow your new widget format or stick with the old /helper/form path?
Moved attribute types into /package_name/attribute/ and was able to successfully install.
Running into bugs with page_types not allowing a save of "chose location".
C
public static function helper($service, $pkgHandle = false) { if($pkgHandle){ return Core::make('/packages/'.$pkgHandle.'/helper/' . $service); }else{ return Core::make('helper/' . $service); } }
I'm not sure if this is correct.
Should the helper class namespacing be:
namespace Concrete\Package\Proevents\Helper\Form;
OR
namespace \Packages\Proevents\Helper\Form;
C
use \Concrete\Package\Proevents\Helper\Form\DateTimeTime as DateTimeTimeHelper; $dtt = new DateTimeTimeHelper();
C
- installer not seeing package custom attribute db.xml
- package helpers need help
- custom attributes do not seem to see and render form.php, only method form();
C
http://andrewembler.com/posts/concrete5-57-add-on-development-part-...
Jordan has graciously allowed me to post the updated source of the add-on, which is in the blog post.
I've been perusing the new core and I can't for the life of me figure out the new development pattern for them .. ?