This commit is contained in:
Laurent Destailleur 2011-08-28 14:18:14 +00:00
parent dff39eabde
commit b96fd1df38
4 changed files with 37 additions and 37 deletions

View File

@ -611,7 +611,7 @@ RECURSIVE = YES
# excluded from the INPUT source files. This way you can easily exclude a # excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag. # subdirectory from a directory tree whose root is specified with the INPUT tag.
EXCLUDE = ../../mssql ../../mysql ../../pgsql ../../CVS ../../build ../../dev ../../doc ../../documents ../../htdocs/conf/conf.php ../../htdocs/includes/adodbtime ../../htdocs/includes/artichow ../../htdocs/includes/barcode ../../htdocs/includes/ckeditor ../../htdocs/includes/fckeditor ../../htdocs/includes/fpdi ../../htdocs/includes/geoip ../../htdocs/includes/jquery ../../htdocs/includes/nusoap ../../htdocs/includes/odtphp ../../htdocs/includes/pear ../../htdocs/includes/phpexcel ../../htdocs/includes/smtps ../../htdocs/includes/tcpdf ../../htdocs/includes/vcard ../../htdocs/cashdesk/include/jscalendar ../../htdocs/avoir ../../htdocs/document ../../htdocs/documents ../../htdocs/lolix ../../htdocs/postnuke ../../htdocs/rapport ../../htdocs/telephonie ../../htdocs/voyage ../../htdocs/oscommerce_ws/ws_client_demo ../../htdocs/oscommerce_ws/ws_server ../../scripts/addons ../../scripts/courrier ../../scripts/lolix ../../scripts/energie EXCLUDE = ../../mssql ../../mysql ../../pgsql ../../CVS ../../build ../../dev ../../doc ../../documents ../../htdocs/conf/conf.php ../../htdocs/includes/adodbtime ../../htdocs/includes/artichow ../../htdocs/includes/barcode ../../htdocs/includes/ckeditor ../../htdocs/includes/fckeditor ../../htdocs/includes/fpdfi ../../htdocs/includes/geoip ../../htdocs/includes/jquery ../../htdocs/includes/nusoap ../../htdocs/includes/odtphp ../../htdocs/includes/pear ../../htdocs/includes/phpexcel ../../htdocs/includes/smtps ../../htdocs/includes/tcpdf ../../htdocs/includes/vcard ../../htdocs/cashdesk/include/jscalendar ../../htdocs/avoir ../../htdocs/document ../../htdocs/documents ../../htdocs/lolix ../../htdocs/postnuke ../../htdocs/rapport ../../htdocs/telephonie ../../htdocs/voyage ../../htdocs/oscommerce_ws/ws_client_demo ../../htdocs/oscommerce_ws/ws_server ../../scripts/addons ../../scripts/courrier ../../scripts/lolix ../../scripts/energie
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or # The EXCLUDE_SYMLINKS tag can be used select whether or not files or
# directories that are symbolic links (a Unix filesystem feature) are excluded # directories that are symbolic links (a Unix filesystem feature) are excluded

View File

@ -34,14 +34,15 @@ $langs->load("categories");
/** /**
* Replace the default llxHeader function * Replace the default llxHeader function
* *
* @param $head * @param string $head Optionnal head lines
* @param $title * @param string $title HTML title
* @param $help_url * @param string $help_url Link to online url help to show on left menu
* @param $target * @param string $target Force target on menu links
* @param $disablejs * @param int $disablejs More content into html header
* @param $disablehead * @param int $disablehead More content into html header
* @param $arrayofjs * @param array $arrayofjs Array of complementary js files
* @param $arrayofcss * @param array $arrayofcss Array of complementary css files
* @return none
*/ */
function llxHeader($head = '', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='') function llxHeader($head = '', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='')
{ {

View File

@ -34,14 +34,11 @@
* @author Regis Houssin * @author Regis Houssin
* *
* @license GNU General Public Licence * @license GNU General Public Licence
*
*
*/ */
/** /**
* \file htdocs/core/class/smtps.class.php * \file htdocs/core/class/smtps.class.php
* \brief Class to manage SMTPS email sending * \brief File of class to manage SMTPS email sending
*/ */
@ -84,14 +81,10 @@ define('SMTPs_INVALID_PARAMETERS', 50, false);
/** /**
* Class SMTPs * \class SMTPs
* * \brief Class to construct and send SMTP compliant email, even
* Class to construct and send SMTP compliant email, even
* to a secure SMTP server, regardless of platform. * to a secure SMTP server, regardless of platform.
* */
* @package SMTPs
*
**/
class SMTPs class SMTPs
{ {
// ============================================================= // =============================================================
@ -2524,6 +2517,9 @@ class SMTPs
/** /**
* $Log: smtps.php,v $ * $Log: smtps.php,v $
* Revision 1.4 2011/08/28 14:24:23 eldy
* Doxygen
*
* Revision 1.3 2011/08/27 19:15:41 hregis * Revision 1.3 2011/08/27 19:15:41 hregis
* Fix: remove obsolete tags * Fix: remove obsolete tags
* *

View File

@ -811,15 +811,17 @@ function top_httphead()
if (isset($conf->global->MAIN_OPTIMIZE_SPEED) && ($conf->global->MAIN_OPTIMIZE_SPEED & 0x04)) { ob_start("ob_gzhandler"); } if (isset($conf->global->MAIN_OPTIMIZE_SPEED) && ($conf->global->MAIN_OPTIMIZE_SPEED & 0x04)) { ob_start("ob_gzhandler"); }
} }
/** /**
* Show HTML header * Replace the default llxHeader function
* @param head Optionnal head lines *
* @param title Web page title * @param string $head Optionnal head lines
* @param disablejs Do not output links to js (Ex: qd fonction utilisee par sous formulaire Ajax) * @param string $title HTML title
* @param disablehead Do not output head section * @param string $help_url Link to online url help to show on left menu
* @param arrayofjs Array of js files to add in header * @param int $disablejs More content into html header
* @param arrayofcss Array of css files to add in header * @param int $disablehead More content into html header
* @param array $arrayofjs Array of complementary js files
* @param array $arrayofcss Array of complementary css files
* @return none
*/ */
function top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='') function top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='')
{ {
@ -1038,14 +1040,15 @@ function top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs
/** /**
* Show an HTML header + a BODY + The top menu bar * Show an HTML header + a BODY + The top menu bar
* @param head Lines in the HEAD *
* @param title Title of web page * @param string head Lines in the HEAD
* @param target Target to use in menu links * @param string title Title of web page
* @param disablejs Do not output links to js (Ex: qd fonction utilisee par sous formulaire Ajax) * @param string target Target to use in menu links
* @param disablehead Do not output head section * @param int disablejs Do not output links to js (Ex: qd fonction utilisee par sous formulaire Ajax)
* @param arrayofjs Array of js files to add in header * @param int disablehead Do not output head section
* @param arrayofcss Array of css files to add in header * @param array arrayofjs Array of js files to add in header
* @param morequerystring Query string to add to the link "print" to get same parameters (use only if autodetect fails) * @param array arrayofcss Array of css files to add in header
* @param string morequerystring Query string to add to the link "print" to get same parameters (use only if autodetect fails)
*/ */
function top_menu($head, $title='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='') function top_menu($head, $title='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='')
{ {