Register Lost your password?

public function fAddFooter(string text, array arrParamsFooter = array())

Parameters

$text

  • Text that will appear in the footer



$arrParamsFooter

  • ‘pager’ (pager): ‘true’
  • ‘pagerAlignment’ (pager alignment): ‘left’, ‘center’, ‘right’

Examples

Example 1


require_once('../classes/cCreateDocx.inc');
$objDocx = new cCreateDocx();
 $arrParamsFooter = array(
    'pager' => 'true',
    'pagerAlignment' => 'center'
  );
$objDocx->fAddFooter('', $arrParamsFooter);
$objDocx->fCreateDocx('ejemplo_section');

Your comments