X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=include%2Fconstants.php;h=3ae1327b13b4b8c45fb3eadc8f7eeae605f1c16c;hb=835db280639a530c9336208f24501eec0dfe28ef;hp=e6e20486be22a08c1437ceaacb53333f589b0dd8;hpb=6c99d1de81366bceab6c9d6cf12179eedc81f9bc;p=squirrelmail.git diff --git a/include/constants.php b/include/constants.php index e6e20486..3ae1327b 100644 --- a/include/constants.php +++ b/include/constants.php @@ -152,7 +152,18 @@ define('SQM_COL_CC', 10); define('SQM_COL_BCC', 11); /** - * FIXME: error notice on direct load - * @since 1.2.0 + * Generic variable type constants + * @since 1.5.2 */ -do_hook('loading_constants'); +define('SQ_TYPE_INT', 'int'); +define('SQ_TYPE_STRING', 'string'); +define('SQ_TYPE_BOOL', 'bool'); +define('SQ_TYPE_ARRAY', 'array'); + +/** + * Template engines supported + * @since 1.5.2 + */ +define('SQ_PHP_TEMPLATE', 'PHP_'); +define('SQ_SMARTY_TEMPLATE', 'Smarty_'); +