Last active
August 29, 2015 14:24
-
-
Save RyanThompson/d82fe6e169dcf7c082ec to your computer and use it in GitHub Desktop.
This is the suggested addon structure for Streams Platform packages and addons.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
src/ | |
Foo/FooModel | |
Foo/FooCollection // Transformed collection for FooModel | |
Foo/FooPresenter // Transformed presenter for FooModel | |
Foo/FooObserver // Observers can not be transformed | |
Foo/Table/FooTableBuilder // Assumes Foo/FooModel for $model property | |
Foo/Table/FooTableColumns // Handler for FooTableBuilder->columns | |
Foo/Form/FooFormBuilder // Assumes Foo/FooModel for $model property | |
Foo/Form/FooFormSections // Handler for FooFormBuilder->sections |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment