Autodoc
  • Namespace
  • Class
  • Tree

Namespaces

  • BlueTihi
    • Context
  • Brickrouge
    • Element
      • Nodes
    • Renderer
    • Widget
  • ICanBoogie
    • ActiveRecord
    • AutoConfig
    • CLDR
    • Composer
    • Core
    • Event
    • Exception
    • HTTP
      • Dispatcher
      • Request
    • I18n
      • Translator
    • Mailer
    • Modules
      • Taxonomy
        • Support
      • Thumbnailer
        • Versions
    • Object
    • Operation
      • Dispatcher
    • Prototype
    • Routes
    • Routing
      • Dispatcher
    • Session
  • Icybee
    • ActiveRecord
      • Model
    • ConfigOperation
    • Document
    • EditBlock
    • Element
      • ActionbarContextual
      • ActionbarSearch
      • ActionbarToolbar
    • FormBlock
    • Installer
    • ManageBlock
    • Modules
      • Articles
      • Cache
        • Collection
        • ManageBlock
      • Comments
        • ManageBlock
      • Contents
        • ManageBlock
      • Dashboard
      • Editor
        • Collection
      • Files
        • File
        • ManageBlock
      • Forms
        • Form
        • ManageBlock
      • I18n
      • Images
        • ManageBlock
      • Members
      • Modules
        • ManageBlock
      • Nodes
        • ManageBlock
        • Module
      • Pages
        • BreadcrumbElement
        • LanguagesElement
        • ManageBlock
        • NavigationBranchElement
        • NavigationElement
        • Page
        • PageController
      • Registry
      • Search
      • Seo
      • Sites
        • ManageBlock
      • Taxonomy
        • Terms
          • ManageBlock
        • Vocabulary
          • ManageBlock
      • Users
        • ManageBlock
        • NonceLogin
        • Roles
      • Views
        • ActiveRecordProvider
        • Collection
        • View
    • Operation
      • ActiveRecord
      • Constructor
      • Module
      • Widget
    • Rendering
  • None
  • Patron
  • PHP

Classes

  • Comment
  • ConfigBlock
  • ConfigOperation
  • DeleteBlock
  • DeleteOperation
  • EditBlock
  • Hooks
  • ManageBlock
  • Model
  • Module
  • PatchOperation
  • PreviewOperation
  • SaveOperation
  • SubmitForm
  • Update20131208
  • ViewProvider
 1 <?php
 2 
 3 /*
 4  * This file is part of the Icybee package.
 5  *
 6  * (c) Olivier Laviale <olivier.laviale@gmail.com>
 7  *
 8  * For the full copyright and license information, please view the LICENSE
 9  * file that was distributed with this source code.
10  */
11 
12 namespace Icybee\Modules\Comments;
13 
14 class Module extends \Icybee\Module
15 {
16     protected function lazy_get_views()
17     {
18         $assets = array('css' => __DIR__ . '/../public/page.css');
19 
20         return array
21         (
22             'list' => array
23             (
24                 'title' => "Comments associated to a node",
25                 'assets' => $assets,
26                 'provider' => __NAMESPACE__ . '\ViewProvider',
27                 'renders' => \Icybee\Modules\Views\View::RENDERS_MANY
28             ),
29 
30             'submit' => array
31             (
32                 'title' => "Comment submit form",
33                 'assets' => $assets,
34                 'renders' => \Icybee\Modules\Views\View::RENDERS_OTHER
35             )
36         );
37     }
38 
39     /*
40     static $notifies_response = array
41     (
42         'subject' => 'Notification de réponse au billet : #{@node.title}',
43         'template' => 'Bonjour,
44 
45 Vous recevez cet email parce que vous surveillez le billet "#{@node.title}" sur <nom_du_site>.
46 Ce billet a reçu une réponse depuis votre dernière visite. Vous pouvez utiliser le lien suivant
47 pour voir les réponses qui ont été faites :
48 
49 #{@absolute_url}
50 
51 Aucune autre notification ne vous sera envoyée.
52 
53 À bientôt sur <url_du_site>',
54         'from' => 'VotreSite <no-reply@votre_site.com>'
55     );
56     */
57 }
Autodoc API documentation generated by ApiGen 2.8.0