/**
  * Add classes to the {@link $classes} object factory.
  * @access private
  */
 protected function _initialize_class_registry()
 {
     parent::_initialize_class_registry();
     $this->register_class('ENTRY', 'RECIPE', 'recipes/obj/recipe.php');
     $this->register_class('FOLDER_TYPE_INFO', 'RECIPE_BOOK_TYPE_INFO');
     $this->register_class('FOLDER_ENTRY_QUERY', 'FOLDER_RECIPE_QUERY', 'recipes/db/folder_recipe_query.php');
     $this->register_class('ENTRY_GRID', 'RECIPE_GRID', 'recipes/gui/recipe_grid.php');
     $this->register_class('ENTRY_FORM', 'RECIPE_FORM', 'recipes/forms/recipe_form.php');
     $this->register_class('FOLDER_GRID', 'RECIPE_BOOK_GRID', 'recipes/gui/recipe_book_grid.php');
     $this->register_class('ENTRY_SUMMARY_GRID', 'RECIPE_SUMMARY_GRID', 'recipes/gui/recipe_grid.php');
     $this->register_class('APPLICATION_TABLE_NAMES', 'RECIPE_APPLICATION_TABLE_NAMES');
     $this->register_class('APPLICATION_PAGE_NAMES', 'RECIPE_APPLICATION_PAGE_NAMES');
     $this->register_handler('FOLDER', Handler_commands, 'RECIPE_BOOK_COMMANDS', 'recipes/cmd/recipe_book_commands.php');
     $this->register_entry_class('recipe', 'RECIPE', 'recipes/obj/recipe.php');
     $this->register_search('recipe', 'RECIPE', 'RECIPE_SEARCH', 'recipes/obj/recipe_search.php');
 }
 /**
  * Add classes to the {@link $classes} object factory.
  * @access private
  */
 protected function _initialize_class_registry()
 {
     parent::_initialize_class_registry();
     $this->register_class('DRAFTABLE_ENTRY_TYPE_INFO', 'ARTICLE_TYPE_INFO');
     $this->register_class('FOLDER_TYPE_INFO', 'SECTION_TYPE_INFO');
     $this->register_class('ENTRY_GRID', 'ARTICLE_GRID', 'news/gui/article_grid.php');
     $this->register_class('FOLDER_GRID', 'SECTION_GRID', 'news/gui/section_grid.php');
     $this->register_class('ENTRY_SUMMARY_GRID', 'ARTICLE_SUMMARY_GRID', 'news/gui/article_grid.php');
     $this->register_class('ENTRY_FORM', 'ARTICLE_FORM', 'news/forms/article_form.php');
     $this->register_class('APPLICATION_TABLE_NAMES', 'NEWS_APPLICATION_TABLE_NAMES');
     $this->register_class('APPLICATION_PAGE_NAMES', 'NEWS_APPLICATION_PAGE_NAMES');
     $this->register_handler('FOLDER', Handler_commands, 'SECTION_COMMANDS', 'news/cmd/section_commands.php');
     $this->register_handler('DRAFTABLE_ENTRY', Handler_commands, 'ARTICLE_COMMANDS', 'news/cmd/article_commands.php');
     $this->register_entry_class('article', 'DRAFTABLE_ENTRY', 'webcore/obj/entry.php');
     $this->register_search('article', 'ARTICLE', 'ARTICLE_SEARCH', 'news/obj/news_search.php');
 }