ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
tcpdf_addfont.php File Reference

This is a command line script to generate TCPDF fonts. More...

Go to the source code of this file.

Namespaces

namespace  com\tecnick\tcpdf
 Configuration file for TCPDF.

Functions

foreach($tcpdf_include_dirs as
$tcpdf_include_path) 
showHelp ()
 Display help guide for this command.

Variables

if(php_sapi_name()!= 'cli') $tcpdf_include_dirs = array(realpath('../tcpdf.php'), '/usr/share/php/tcpdf/tcpdf.php', '/usr/share/tcpdf/tcpdf.php', '/usr/share/php-tcpdf/tcpdf.php', '/var/www/tcpdf/tcpdf.php', '/var/www/html/tcpdf/tcpdf.php', '/usr/local/apache2/htdocs/tcpdf/tcpdf.php')
if(!is_array($argv)) $options = array('type'=>'', 'enc'=>'', 'flags'=>32, 'outpath'=>K_PATH_FONTS, 'platid'=>3, 'encid'=>1, 'addcbbox'=>false, 'link'=>false)
 $sopt = ''
 $lopt = array()
 $lopt [] = 'type:'
 $inopt = getopt($sopt, $lopt)
foreach($inopt as $opt=> $val)
if(empty($options['fonts'])) 
if (!is_dir($options['outpath']) OR!is_writable($options['outpath']))
 foreach ($options['fonts'] as $fontfile)

Detailed Description

This is a command line script to generate TCPDF fonts.


Definition in file tcpdf_addfont.php.

Function Documentation

foreach ($tcpdf_include_dirs as $tcpdf_include_path) showHelp ( )

Display help guide for this command.

Definition at line 60 of file tcpdf_addfont.php.

References convert(), exit, and n.

{
$help = <<<EOD
tcpdf_addfont - command line tool to convert fonts for the TCPDF library.
Usage: tcpdf_addfont.php [ options ] -i fontfile[,fontfile]...
Options:
-t
--type Font type. Leave empty for autodetect mode.
Valid values are:
TrueTypeUnicode
TrueType
Type1
CID0JP = CID-0 Japanese
CID0KR = CID-0 Korean
CID0CS = CID-0 Chinese Simplified
CID0CT = CID-0 Chinese Traditional
-e
--enc Name of the encoding table to use. Leave empty for
default mode. Omit this parameter for TrueType Unicode
and symbolic fonts like Symbol or ZapfDingBats.
-f
--flags Unsigned 32-bit integer containing flags specifying
various characteristics of the font (PDF32000:2008 -
9.8.2 Font Descriptor Flags): +1 for fixed font; +4 for
symbol or +32 for non-symbol; +64 for italic. Fixed and
Italic mode are generally autodetected so you have to
set it to 32 = non-symbolic font (default) or 4 =
symbolic font.
-o
--outpath Output path for generated font files (must be writeable
by the web server). Leave empty for default font folder.
-p
--platid Platform ID for CMAP table to extract (when building a
Unicode font for Windows this value should be 3, for
Macintosh should be 1).
-n
--encid Encoding ID for CMAP table to extract (when building a
Unicode font for Windows this value should be 1, for
Macintosh should be 0). When Platform ID is 3, legal
values for Encoding ID are: 0=Symbol, 1=Unicode,
2=ShiftJIS, 3=PRC, 4=Big5, 5=Wansung, 6=Johab,
7=Reserved, 8=Reserved, 9=Reserved, 10=UCS-4.
-b
--addcbbox Includes the character bounding box information on the
php font file.
-l
--link Link to system font instead of copying the font data #
(not transportable) - Note: do not work with Type1 fonts.
-i
--fonts Comma-separated list of input font files.
-h
--help Display this help and exit.
EOD;
echo $help."\n\n";
exit(0);
}
// remove the name of the executing script
array_shift($argv);
// no options chosen
if (!is_array($argv)) {
}
// initialize the array of options
$options = array('type'=>'', 'enc'=>'', 'flags'=>32, 'outpath'=>K_PATH_FONTS, 'platid'=>3, 'encid'=>1, 'addcbbox'=>false, 'link'=>false);
// short input options
$sopt = '';
$sopt .= 't:';
$sopt .= 'e:';
$sopt .= 'f:';
$sopt .= 'o:';
$sopt .= 'p:';
$sopt .= 'n:';
$sopt .= 'b';
$sopt .= 'l';
$sopt .= 'i:';
$sopt .= 'h';
// long input options
$lopt = array();
$lopt[] = 'type:';
$lopt[] = 'enc:';
$lopt[] = 'flags:';
$lopt[] = 'outpath:';
$lopt[] = 'platid:';
$lopt[] = 'encid:';
$lopt[] = 'addcbbox';
$lopt[] = 'link';
$lopt[] = 'fonts:';
$lopt[] = 'help';
// parse input options
$inopt = getopt($sopt, $lopt);
// import options (with some sanitization)
foreach ($inopt as $opt => $val) {
switch ($opt) {
case 't':
case 'type': {
if (in_array($val, array('TrueTypeUnicode', 'TrueType', 'Type1', 'CID0JP', 'CID0KR', 'CID0CS', 'CID0CT'))) {
$options['type'] = $val;
}
break;
}
case 'e':
case 'enc': {
$options['enc'] = $val;
break;
}
case 'f':
case 'flags': {
$options['flags'] = intval($val);
break;
}
case 'o':
case 'outpath': {
$options['outpath'] = $val;
break;
}
case 'p':
case 'platid': {
$options['platid'] = min(max(1, intval($val)), 3);
break;
}
case 'n':
case 'encid': {
$options['encid'] = min(max(0, intval($val)), 10);
break;
}
case 'b':
case 'addcbbox': {
$options['addcbbox'] = true;
break;
}
case 'l':
case 'link': {
$options['link'] = true;
break;
}
case 'i':
case 'fonts': {
$options['fonts'] = explode(',', $val);
break;
}
case 'h':
case 'help':
default: {
break;
}
} // end of switch
} // end of while loop
if (empty($options['fonts'])) {
die("ERROR: missing input fonts (try --help for usage)\n");
}
// check the output path
if (!is_dir($options['outpath']) OR !is_writable($options['outpath'])) {
die("ERROR: Can't write to ".$options['outpath']."\n");
}
echo "*** Converting fonts for TCPDF ***\n\n";
echo '--- Output dir set to '.$options['outpath']."\n\n";
foreach ($options['fonts'] as $fontfile) {
$fontname = TCPDF_FONTS::addTTFfont($fontfile, $options['type'], $options['enc'], $options['flags'], $options['outpath'], $options['platid'], $options['encid'], $options['addcbbox'], $options['link']);
echo ">>> ".$fontfile.' added as '.$fontname."\n";
}

+ Here is the call graph for this function:

Variable Documentation

$inopt = getopt($sopt, $lopt)

Definition at line 166 of file tcpdf_addfont.php.

$lopt = array()

Definition at line 153 of file tcpdf_addfont.php.

$lopt[] = 'type:'

Definition at line 154 of file tcpdf_addfont.php.

if (!is_array($argv)) $options = array('type'=>'', 'enc'=>'', 'flags'=>32, 'outpath'=>K_PATH_FONTS, 'platid'=>3, 'encid'=>1, 'addcbbox'=>false, 'link'=>false)

Definition at line 137 of file tcpdf_addfont.php.

Referenced by ilRegistrationSettingsGUI\__buildAccessLimitationSelection(), ilTypicalLearningTimeInputGUI\__buildDaysSelect(), ilMDEditorGUI\__buildDaysSelect(), ilTypicalLearningTimeInputGUI\__buildMonthsSelect(), ilMDEditorGUI\__buildMonthsSelect(), FormMailCodesGUI\__construct(), XML_RPC2_Backend_Xmlrpcext_Client\__construct(), XML_RPC2_Backend_Php_Client\__construct(), XML_RPC2_Backend_Php_Server\__construct(), XML_RPC2_Backend_Xmlrpcext_Server\__construct(), XML_RPC2_Client\__construct(), XML_RPC2_CachedClient\__construct(), XML_RPC2_Server\__construct(), XML_RPC2_CachedServer\__construct(), Securimage\__construct(), ilAdvancedSearch\__getDifference(), ilObjPaymentSettingsGUI\__getVendors(), ilAccountRegistrationGUI\__initForm(), ilLinkChecker\__validateLinks(), HTTP_WebDAV_Server\_copymove(), Auth\_factory(), HTTP_WebDAV_Server\_get_ranges(), ilMDUtilSelect\_getBrowserSelect(), ilMDUtilSelect\_getContextSelect(), ilMDUtilSelect\_getCopyrightAndOtherRestrictionsSelect(), ilMDUtilSelect\_getCostsSelect(), MDB2_Driver_Manager_Common\_getCreateTableQuery(), ilMDUtilSelect\_getDifficultySelect(), ilMDUtilSelect\_getDurationSelect(), ilMDUtilSelect\_getFormatSelect(), ilMDUtilSelect\_getIntendedEndUserRoleSelect(), ilMDUtilSelect\_getInteractivityLevelSelect(), ilMDUtilSelect\_getInteractivityTypeSelect(), ilMDUtilSelect\_getLanguageSelect(), ilMDUtilSelect\_getLearningResourceTypeSelect(), ilMDUtilSelect\_getLocationTypeSelect(), ilAuthUtils\_getMultipleAuthModeOptions(), ilMDUtilSelect\_getOperatingSystemSelect(), Spreadsheet_Excel_Writer_Validator\_getOptions(), ilMDUtilSelect\_getPurposeSelect(), ilBMFTransport_HTTP\_getRequest(), ilMDUtilSelect\_getRoleSelect(), ilMDUtilSelect\_getSemanticDensitySelect(), ilMDUtilSelect\_getStatusSelect(), ilMDUtilSelect\_getStructureSelect(), ilMDUtilSelect\_getTypicalAgeRangeSelect(), ilMDUtilSelect\_getTypicalLearningTimeSelect(), ilBMFBase\_makeEnvelope(), ilObject\_prepareCloneSelection(), ilContainerReferenceGUI\_prepareSelection(), ilBMFBase_Object\_raiseSoapFault(), ilBMFTransport_HTTP\_sendHTTP(), ilBMFTransport_HTTP\_sendHTTPS(), ilBMFBase\_serializeValue(), Spreadsheet_Excel_Writer_Worksheet\_writeUrlInternal(), Spreadsheet_Excel_Writer_Worksheet\_writeUrlWeb(), ilSurveyEvaluationGUI\addApprSelectionToToolbar(), ilCloudPluginFileTreeGUI\addDropZone(), ilDataCollectionDatatype\addFilterInputFieldToTable(), ilFilterGUI\addFilterItemByMetaType(), ilTable2GUI\addFilterItemByMetaType(), ilTestExpressPageObjectGUI\addQuestion(), ilObjTestGUI\addQuestionObject(), ilUserProfile\addStandardFieldsToForm(), ilADTMultiEnumFormBridge\addToForm(), ilADTEnumFormBridge\addToForm(), ilADTEnumSearchBridgeSingle\addToForm(), ilADTEnumSearchBridgeMulti\addToForm(), ilObjExerciseGUI\adoptTeamAssignmentsFormObject(), ilDidacticTemplateGUI\appendToolbarSwitch(), Auth\applyAuthOptions(), ilPersonalSkillsGUI\assignMaterials(), ilObjStyleSettingsGUI\assignStylesToCatsObject(), ilCloudPluginUploadGUI\asyncUploadFile(), Auth\Auth(), Auth_Anonymous\Auth_Anonymous(), Auth_Container_RADIUS\Auth_Container_RADIUS(), Auth_Container_SOAP\Auth_Container_SOAP(), Auth_Container_SOAP5\Auth_Container_SOAP5(), ilObjQuestionPoolGUI\buildCreateQuestionForm(), ilTestSkillEvaluationToolbarGUI\buildEvaluationModeOptionsArray(), ilRecurrenceInputGUI\buildMonthlyByMonthDaySelection(), ilObjTestGUI\buildPageViewToolbar(), ilCopyWizardExplorer\buildSelect(), ilObjTestDynamicQuestionSetConfigGUI\buildTaxonomySelectInputOptionJson(), ilDataCollectionNReferenceField\buildTemplate(), ilRecurrenceInputGUI\buildYearlyByDaySelection(), ilRecurrenceInputGUI\buildYearlyByMonthDaySelection(), Securimage\checkByCaptchaId(), ilContainer\cloneAllObject(), ilObjectGUI\cloneAllObject(), ilContainerGUI\cloneAllObject(), ilSoapUtils\cloneNode(), ilLOSettings\cloneSettings(), ilSurveyParticipantsGUI\codesObject(), Net_Socket\connect(), MDB2\connect(), ilSurveyConstraintsGUI\constraintForm(), ilDAVServer\COPY(), ilObjContentObject\copyAllPagesAndChapters(), ilObjectCopyGUI\copyContainer(), ilSoapObjectAdministration\copyObject(), XML_RPC2_Server\create(), XML_RPC2_CachedServer\create(), XML_RPC2_Client\create(), XML_RPC2_CachedClient\create(), Auth_OpenID_MDB2Store\create_assoc_table(), MDB2_Driver_Manager_mysql\createSequence(), MDB2_Driver_Manager_mysqli\createSequence(), MDB2_Driver_Manager_mysql\createTable(), MDB2_Driver_Manager_mysqli\createTable(), MDB2_Driver_Manager_Common\createTable(), ilDB\createTable(), ilObjExerciseGUI\createTeamObject(), ilDAVServer\DELETE(), ilPCResourcesGUI\edit(), ilPCLoginPageElementGUI\edit(), ilPCTableGUI\editCellAlignment(), ilPCTableGUI\editCellStyle(), ilAdvancedMDSettingsGUI\editFields(), ilObjWikiGUI\editImportantPagesObject(), ilObjExternalToolsSettingsGUI\editMathJaxObject(), ilObjTypeDefinitionGUI\editObject(), ilObjHelpSettingsGUI\editSettings(), ilObjNewsSettingsGUI\editSettings(), ilObjStyleSettingsGUI\editSystemStylesObject(), ilObjStyleSheetGUI\editTagStyleObject(), ilECSSettingsGUI\exportMappings(), ilAuthFactory\factory(), MDB2\factory(), ilTable2GUI\fillFooter(), ilLPCollectionSettingsTableGUI\fillRow(), ilUtil\formSelect(), ilObjTestGUI\formTimingObject(), ilDAVServer\GET(), ilCharSelectorConfig\getBlockOptions(), Title\getBrokenLinksFrom(), Securimage\getCaptchaId(), ilNotificationAdminSettingsForm\getChannelForm(), ilChatroomUser\getChatNameSuggestions(), ilECSMappingUtils\getCourseMappingFieldSelectOptions(), ilDAVServer\getDir(), ilNotificationAdminSettingsForm\getGeneralSettingsForm(), ilConsultationHourGroups\getGroupSelectOptions(), ilCalendarUtil\getHourSelection(), ilADTEnumPresentationBridge\getHTML(), ilADTMultiEnumPresentationBridge\getHTML(), ilFileUploadGUI\getHTML(), ilAccordionGUI\getHTML(), ilRegistrationCodesTableGUI\getItems(), Title\getLinksTo(), ilLPTableBaseGUI\getMonthsFilter(), ilObjectTranslationGUI\getMultiLangForm(), ilTestParticipantData\getOptionArray(), ilShopPublicSectionSelector\getOutput(), ilSCORMExplorer\getOutput(), ilExplorer\getOutput(), SurveySingleChoiceQuestionGUI\getParsedAnswers(), SurveyMultipleChoiceQuestionGUI\getParsedAnswers(), SurveyMatrixQuestionGUI\getParsedAnswers(), ilTestResultsToolbarGUI\getParticipantSelectorOptionsWithHintOption(), ilPayMethods\getPayMethodsOptions(), ilECSCategoryMapping\getPossibleFields(), ilLPTableBaseGUI\getPossibleTypes(), SurveyMultipleChoiceQuestion\getPreconditionOptions(), SurveySingleChoiceQuestion\getPreconditionOptions(), SurveyMultipleChoiceQuestion\getPreconditionSelectValue(), SurveySingleChoiceQuestion\getPreconditionSelectValue(), SurveyMatrixQuestion\getPreconditionSelectValue(), SurveySingleChoiceQuestionGUI\getPrintView(), SurveyMultipleChoiceQuestionGUI\getPrintView(), SurveyMatrixQuestionGUI\getPrintView(), ilOpenIdProviders\getProviderSelection(), ilCourseObjectivesGUI\getRandomTestQplOptions(), ilDataCollectionRecord\getRecordFieldHTML(), ilDataCollectionRecord\getRecordFieldSortingValue(), ilTrSummaryTableGUI\getSelCountryCodes(), ilDataCollectionNReferenceField\getSingleHTML(), Title\getTemplateLinksTo(), ilPageContentGUI\getTemplateOptions(), ilPCIIMTriggerEditorGUI\getToolbar(), ilImageMapEditorGUI\getToolbar(), ilNotificationAdminSettingsForm\getTypeForm(), TCPDF_STATIC\getUserPermissionCode(), HTML_Template_IT\HTML_Template_IT(), HTTP_WebDAV_Server\http_DELETE(), HTTP_WebDAV_Server\http_GET(), HTTP_WebDAV_Server\http_HEAD(), HTTP_WebDAV_Server\http_LOCK(), HTTP_WebDAV_Server\http_MKCOL(), HTTP_WebDAV_Server\http_PROPFIND(), HTTP_WebDAV_Server\http_PROPPATCH(), HTTP_WebDAV_Server\http_PUT(), HTTP_WebDAV_Server\http_UNLOCK(), ilBMFFault\ilBMFFault(), ilSoapUtils\ilClone(), ilSoapUtils\ilCloneDependencies(), ilECSSettingsGUI\imported(), ilECSSettingsGUI\importMappings(), ilObjMediaCastGUI\initAddCastItemForm(), ilRegistrationSettingsGUI\initAddCodesForm(), ilObjLanguageExtGUI\initAddNewEntryForm(), ilObjStyleSettingsGUI\initAddPageLayoutForm(), ilSetupGUI\initBasicSettingsForm(), ilObjPortfolioGUI\initBlogForm(), ilECSSettingsGUI\initCategoryMappingForm(), ilPageEditorGUI\initCharacteristicForm(), ilSetupGUI\initClientDbForm(), ilObjPortfolioTemplateGUI\initCopyPageFormOptions(), ilObjPortfolioGUI\initCopyPageFormOptions(), ilObjPortfolioGUI\initCreateForm(), ilSetupGUI\initDBSelectionForm(), ilObjectGUI\initDidacticTemplate(), ilDidacticTemplateSettingsGUI\initEditTemplate(), ilPDNewsTableGUI\initFilter(), ilTestQuestionBrowserTableGUI\initFilter(), ilLPObjectStatisticsTypesTableGUI\initFilter(), ilLanguageExtTableGUI\initFilter(), ilWorkspaceShareTableGUI\initFilter(), ilSurveyQuestionsTableGUI\initFilter(), ilBookingReservationsTableGUI\initFilter(), ilSurveyQuestionbrowserTableGUI\initFilter(), ilAccountCodesTableGUI\initFilter(), ilLPObjectStatisticsLPTableGUI\initFilter(), ilMediaPoolTableGUI\initFilter(), ilQuestionBrowserTableGUI\initFilter(), ilRegistrationCodesTableGUI\initFilter(), ilTrObjectUsersPropsTableGUI\initFilter(), ilLPTableBaseGUI\initFilter(), ilUserTableGUI\initFilter(), ilObjMailGUI\initForm(), ilOrgUnitTypeFormGUI\initForm(), ilPCTabsGUI\initForm(), ilDataCollectionRecordListViewdefinitionGUI\initForm(), ilPCBlogGUI\initForm(), ilBookingObjectGUI\initForm(), ilPCVerificationGUI\initForm(), ilPCMapGUI\initForm(), ilPCSkillsGUI\initForm(), ilSkillTemplateReferenceGUI\initForm(), ilObjCourseGroupingGUI\initForm(), ilDataCollectionTableEditGUI\initForm(), ilDataCollectionFieldEditGUI\initForm(), ilDataCollectionRecordEditGUI\initForm(), ilObjUserGUI\initForm(), ilCourseObjectivesGUI\initFormRandom(), ilConsultationHoursGUI\initFormSequence(), ilObjSearchSettingsGUI\initFormSettings(), ilPersonalSettingsGUI\initGeneralSettingsForm(), ilSurveyEditorGUI\initHeadingForm(), ilObjTestGUI\initImportForm(), ilPCListGUI\initListForm(), ilAuthLoginPageEditorGUI\initLoginForm(), ilPersonalSettingsGUI\initMailOptionsForm(), ilMailOptionsGUI\initMailOptionsForm(), ilECSSettingsGUI\initMappingsForm(), ilPersonalProfileGUI\initPersonalDataForm(), ilPCBlogGUI\initPostingForm(), ilADTTest\initProperties(), ilObjSCORM2004LearningModuleGUI\initPropertiesEditableForm(), ilPCTableGUI\initPropertiesForm(), ilObjSCORM2004LearningModuleGUI\initPropertiesForm(), ilMDEditorGUI\initQuickEditForm(), ilObjRepositorySettingsGUI\initSettingsForm(), ilShopNewsGUI\initSettingsForm(), ilObjWikiGUI\initSettingsForm(), ilObjTaxonomyGUI\initSettingsForm(), ilObjMediaCastGUI\initSettingsForm(), ilObjStyleSheetGUI\initTagStyleForm(), ilObjStyleSheetGUI\initTemplateForm(), ilObjStyleSheetGUI\initTemplateGenerationForm(), ilLOEditorGUI\initTestForm(), ilSetupGUI\initTreeImplementationForm(), ilObjSAHSLearningModuleGUI\initUploadForm(), ilCourseObjectivesGUI\initWizard(), ilPCQuestionGUI\insert(), ilRecurrenceInputGUI\insert(), ilSoapUtils\linkNode(), ilTestExportGUI\listExportFiles(), ilExportGUI\listExportFiles(), ilDataCollectionFieldListGUI\listFields(), ilFileSystemGUI\listFiles(), ilObjectOwnershipManagementGUI\listObjects(), ilPersonalSkillsGUI\listProfiles(), ilSkillSelfEvaluationGUI\listSelfEvaluations(), ilObjMediaObjectGUI\listSubtitleFilesObject(), ilWikiPageTemplateGUI\listTemplates(), ilDAVServer\LOCK(), ilObjAssessmentFolderGUI\logsObject(), ilObjExerciseGUI\membersObject(), ilDAVServer\MKCOL(), ilDAVServer\mountDir(), ilDAVServer\MOVE(), ilObjTestGUI\movePageFormObject(), Securimage\openDatabase(), ilSCORMTrackingItemsPerUserFilterGUI\parse(), ilSCORMTrackingItemsPerScoFilterGUI\parse(), ilSCORM2004TrackingItemsPerUserFilterGUI\parse(), ilSCORM2004TrackingItemsPerScoFilterGUI\parse(), ilChartDataPie\parseData(), ilChartData\parseData(), ilLuceneAdvancedSearchFields\parseFieldQuery(), PEAR_Error\PEAR_Error(), ilObjRoleGUI\permObject(), PEAR\popErrorHandling(), assClozeTestGUI\populateGapFormPart(), ilECSSettingsGUI\prepareFieldSelection(), ilCourseDefinedFieldDefinition\prepareSelectBox(), ilObjSCORMLearningModuleGUI\properties(), ilDAVServer\PROPFIND(), ilDAVServer\PROPPATCH(), PEAR\pushErrorHandling(), ilDAVServer\PUT(), ilDAVServer\PUTfinished(), ilObjSurveyQuestionPoolGUI\questionsObject(), PEAR\raiseError(), MDB2\raiseError(), ilECSSettingsGUI\released(), XML_RPC2_Backend_Xmlrpcext_Client\remoteCall___(), XML_RPC2_Backend_Php_Client\remoteCall___(), ilPortfolioPageGUI\renderTeaser(), ilAuthContainerECS\resetMailOptions(), ilLDAPAttributeMapping\save(), ilObjMediaPoolGUI\selectUploadDirFiles(), ilPersonalSkillsGUI\selfEvaluation(), ilBMFTransport_SMTP\send(), ilBMFTransport_HTTP\send(), ilChatroomServerConnector\sendMessage(), PEAR\setErrorHandling(), ilAdvancedSearch\setOptions(), MDB2\setOptions(), ilDataCollectionRecordViewGUI\setOptions(), HTML_Template_IT\setOptions(), ilObjTest\setResultsPresentationOptionsByArray(), ilObjTest\setScoringFeedbackOptionsByArray(), ilObjectGUI\setSubObjects(), ilWorkspaceAccessGUI\share(), ilMailingListsGUI\showAssignmentForm(), ilObjContentObjectGUI\showExportIDsOverview(), ilObjSCORM2004LearningModuleGUI\showLearningObjectivesAlignment(), ilDAVServer\showMountInstructions(), ilObjExerciseGUI\showParticipantObject(), ilObjContentObjectGUI\showTooltipList(), ilShopTopicsGUI\showTopicsSettings(), MDB2\singleton(), Auth\staticCheckAuth(), PEAR\staticPopErrorHandling(), PEAR\staticPushErrorHandling(), OLE_ChainedBlockStream\stream_open(), Structures_BibTex\Structures_BibTex(), assQuestionGUI\suggestedsolution(), Auth_OpenID_Parse\tagMatcher(), ilLDAPServer\toPearAuthArray(), ilDAVServer\UNLOCK(), ilLDAPSettingsGUI\userMappingToolbar(), ilValidatorAdapter\validate(), ilPDNotesGUI\view(), and ilWikiStatGUI\viewToolbar().

$sopt = ''

Definition at line 140 of file tcpdf_addfont.php.

if (php_sapi_name()!= 'cli') $tcpdf_include_dirs = array(realpath('../tcpdf.php'), '/usr/share/php/tcpdf/tcpdf.php', '/usr/share/tcpdf/tcpdf.php', '/usr/share/php-tcpdf/tcpdf.php', '/var/www/tcpdf/tcpdf.php', '/var/www/html/tcpdf/tcpdf.php', '/usr/local/apache2/htdocs/tcpdf/tcpdf.php')

Definition at line 49 of file tcpdf_addfont.php.

foreach($options['fonts'] as $fontfile)

Definition at line 240 of file tcpdf_addfont.php.

foreach ($inopt as $opt=> $val) if (empty($options['fonts'])) if(!is_dir($options['outpath']) OR!is_writable($options['outpath']))

Definition at line 232 of file tcpdf_addfont.php.