XOOPS RMCommon Utilities  2.1.8.91RC
 All Classes Namespaces Files Functions Variables
modinfo.php
Go to the documentation of this file.
1 <?php
2 // $Id: modinfo.php 842 2011-12-14 05:16:26Z mambax7@gmail.com $
3 // --------------------------------------------------------------
4 // Red México Common Utilities
5 // A framework for Red México Modules
6 // Author: Eduardo Cortés <i.bitcero@gmail.com>
7 // Email: i.bitcero@gmail.com
8 // License: GPL 2.0
9 // --------------------------------------------------------------
10 
11 if (!function_exists("__"))
12  include_once XOOPS_ROOT_PATH.'/modules/rmcommon/loader.php';
13 
14 // Configurations
15 define('_MI_RMC_LANG', __('Language to use','rmcommon'));
16 define('_MI_RMC_IMAGESTORE', __('Arrange images by date','rmcommon'));
17 define('_MI_RMC_EDITOR',__('Select the default editor','rmcommon'));
18 define('_MI_RMC_EDITOR_VISUAL',__('Visual Editor','rmcommon'));
19 define('_MI_RMC_EDITOR_HTML',__('HTML Editor','rmcommon'));
20 define('_MI_RMC_EDITOR_XOOPS',__('XoopsCode Editor','rmcommon'));
21 define('_MI_RMC_EDITOR_SIMPLE',__('Simple Editor','rmcommon'));
22 define('_MI_RMC_IMGCATSNUMBER',__('Limit for image categories list.','rmcommon'));
23 define('_MI_RMC_IMGSNUMBER',__('Image manager: number of images per page','rmcommon'));
24 define('_MI_RMC_SECREY',__('Secret Key','rmcommon'));
25 define('_MI_RMC_SECREYD',__('Provide a secret key used to encrypt information.','rmcommon'));
26 define('_MI_RMC_ADMTHEME', __('Admin theme','rmcommon'));
27 define('_MI_RMC_ADDJQUERY', __('Enable JQuery for front end','rmcommon'));
28 define('_MI_RMC_ADDJQUERYD', __('When this option is enabled, Common Utilities will include JQuery automatically. Please, disable this option only when your theme include jquery by default.','rmcommon'));
29 
30 define('_MI_RMC_DOHTML',__('Allow HTMl in text','rmcommon'));
31 define('_MI_RMC_DOSMILE',__('Allow smilies in text','rmcommon'));
32 define('_MI_RMC_DOXCODE',__('Allow XoopsCode','rmcommon'));
33 define('_MI_RMC_DOIMAGE',__('Allow images in text','rmcommon'));
34 define('_MI_RMC_DOBR',__('Auto add line breaks in text','rmcommon'));
35 
36 define('_MI_RMC_MODSNUMBER',__('Modules number on dashboard','rmcommon'));
37 
38 // Comments
39 define('_MI_RMC_ENABLECOMS',__('Enable comments','rmcommon'));
40 define('_MI_RMC_ANONCOMS',__('Allow anonymous users to post comments','rmcommon'));
41 define('_MI_RMC_APPROVEREG',__('Automatically approve comments by registered users','rmcommon'));
42 define('_MI_RMC_APPROVEANON',__('Automatically approve comments by anonymous users','rmcommon'));
43 define('_MI_RMC_ALLOWEDIT',__('Allow users to edit their comments','rmcommon'));
44 define('_MI_RMC_EDITLIMIT',__('Time limit to edit a comment (in hours).','rmcommon'));
45 
46 // RSS
47 define('_MI_RMC_RSSIMAGE', __('Image for RSS feeds','rmcommon'));
48 
49 // Mailer Settings
50 define('_MI_RMC_MAILERMETH', __('Mailer method','rmcommon'));
51 define('_MI_RMC_MAILERMETHD', __('Common Utilities will use this method to send emails.'));
52 define('_MI_RMC_PHPMAIL', __('PHP Mail()','rmcommon'));
53 define('_MI_RMC_SMTP', __('SMTP','rmcommon'));
54 define('_MI_RMC_SENDMAIL', __('Sendmail','rmcommon'));
55 define('_MI_RMC_SMTPSERVER',__('SMTP server to use','rmcommon'));
56 define('_MI_RMC_SMTPSERVERD', __('Specify the server through with the emails will be sent.','rmcommon'));
57 define('_MI_RMC_ENCRYPT', __('SMTP encryption','rmcommon'));
58 define('_MI_RMC_ENCRYPTD', __('For SSL or TLS encryption to work, your PHP installation must have appropriate OpenSSL transports wrappers.','rmcommon'));
59 define('_MI_RMC_CRYPTNONE', __('None','rmcommon'));
60 define('_MI_RMC_CRYPTSSL', __('SSL','rmcommon'));
61 define('_MI_RMC_CRYPTTLS', __('TLS','rmcommon'));
62 define('_MI_RMC_SMTPPORT', __('SMTP server port','rmcommon'));
63 define('_MI_RMC_SMTPPORTD', __('Note that you must to write the appropriate port based on your encryption type selection.','rmcommon'));
64 define('_MI_RMC_SMTPUSER', __('SMTP username','rmcommon'));
65 define('_MI_RMC_SMTPPASS', __('SMTP password','rmcommon'));
66 define('_MI_RMC_SENDMAILPATH', __('Sendmail path','rmcommon'));
67 define('_MI_RMC_SENDMAILPATHD', __('Input the command for sendmail, including the correct command line flags. The default to use is "/usr/sbin/sendmail -bs" if this is not specified.','rmcommon'));
68 
69 // RSS
70 define('_MI_RMC_RSSENABLE', __('Enable RSS Center','rmcommon'));
71 
72 // Settings
73 define('_MI_RMC_BLOCKSENABLE', __('Enable internal blocks manager','rmcommon'));
74 define('_MI_RMC_GUIENABLE', __('Disable new GUI when working on non native modules?','rmcommon'));
75 define('_MI_RMC_UPDATES', __('Activate updates','rmcommon'));
76 define('_MI_RMC_UPDATESD', __('When this option is enabled, Common Utilities will search automatically updates for modules and other components.','rmcommon'));
77 define('_MI_RMC_UPDATESINTERVAL', __('Days between updates search','rmcommon'));