Skip to content

Instantly share code, notes, and snippets.

@mattsah
Created August 2, 2012 00:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattsah/3231836 to your computer and use it in GitHub Desktop.
Save mattsah/3231836 to your computer and use it in GitHub Desktop.
Namespacing Concepts
\Dotink\Flourish\
# Loaded from /includes/lib/flourish via:
#
# 'autoloaders' => array(
# '\Dotink\Flourish\*' => 'COMPAT:includes/lib/flourish'
# )
ORM
ActiveRecord
RecordSet
HTML
JSON
NotFoundException
SQLException
...
\Dotink\Moor\
# Loaded from /includes/lib/moor via:
#
# 'autoloaders' => array(
# '\Dotink\Moor\*' => 'COMPAT:includes/lib/moor'
# )
Router
NotFoundException
ContinueExecption
\Dotink\Inkwell\
# Loaded from /includes/lib via:
#
# 'autoloaders' => array(
# '\Dotink\Inkwell\*' => 'COMPAT:includes/lib'
# )
ActiveRecord
RecordSet
Request
Response
Scaffolder
View
\Dotink\Inkwell\Plugins\ActiveRecord
# Loaded from /includes/lib/dotink/inkwell/plugins/active_record via:
#
# 'autoloaders' => array(
# 'library' => 'IW:includes/lib'
# )
FileColumns
ImageColumns
URLColumns
EmailColumns
PasswordColumns
\Dotink\Inkwell\Plugins\Response
# Loaded from /includes/lib/dotink/inkwell/plugins/responses via:
#
# 'autoloaders' => array(
# 'library' => 'IW:includes/lib'
# )
JSON
PHP
\DotinK\Forums
# Loaded from /user/controllers/dotink/forums/ via:
#
# 'autoloaders' => array(
# 'Dotink\Inkwell\Controller' => 'IW:user/controllers'
# )
ForumsController
TopicsController
RepliesController
# Loaded from /user/models/dotink/forums/ via:
#
# 'autoloaders' => array(
# 'Dotink\Inkwell\ActiveRecord' => 'IW:user/models'
# )
Forum
Topic
Reply
# Loaded from /user/models/sets/dotink/forums/ via:
#
# 'autoloaders' => array(
# 'Dotink\Inkwell\RecordSet' => 'IW:user/models/sets'
# )
Forums
Topics
Replies
\Vendor\Package\<whatever>
# Loaded from /includes/lib/vendors/Vendor/Package/<whatever> via:
#
# 'autoloaders' => array(
# 'vendor_library' => 'PSR0:includes/lib'
# )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment