PHP Classes

File: config/diagnostic.config.php

Recommend this page to a friend!
  Classes of Fabrice Fesch   Melis PHP CMS Analytics by Page   config/diagnostic.config.php   Download  
File: config/diagnostic.config.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Melis PHP CMS Analytics by Page
Melis CMS module to provide page access statistics
Author: By
Last change:
Date: 1 year ago
Size: 1,051 bytes
 

Contents

Class file image Download
<?php

return [
   
'plugins' => [
       
'diagnostic' => [
           
'conf' => [
               
// user rights exclusions
               
'rightsDisplay' => 'none',
            ],
           
'MelisCmsPageAnalytics' => [
               
'testFolder' => 'test',
               
'moduleTestName' => 'MelisCmsPageAnalyticsTest',
               
'db' => [
                   
// the keys will used as the function name when generated,
                   
'getAnalyticsTable' => [
                       
'model' => 'MelisCmsPageAnalytics\Model\MelisCmsPageAnalytics',
                       
'model_table' => 'MelisCmsPageAnalytics\Model\Tables\MelisCmsPageAnalyticsTable',
                       
'db_table_name' => 'melis_cms_page_analytics',
                    ],
                ],
               
'methods' => [
                   
'testAddDataOnPage' => [
                       
'payloads' => [
                           
'page_id' => 1
                       
]
                    ]
                ],
            ],
        ],
    ],
];