DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

EXT: Static Info Tables Extension

Author:Kasper Skårhøj
Created:2002-11-01T00:32:00
Changed by:Manuel Rego
Changed:2007-08-07T14:26:13
Author:Manuel Rego Casasnovas
Email:mrego@igalia.com
Info 3:
Info 4:

EXT: Static Info Tables Extension

Extension Key: gl_static_info_tables

Copyright 2000-2002, Manuel Rego Casasnovas, <mrego@igalia.com>

This document is published under the Open Content License

available from http://www.opencontent.org/opl.shtml

The content of this document is related to TYPO3

- a GNU/GPL CMS/Framework available from www.typo3.com

Table of Contents

EXT: My Extension 1

Introduction 1

What does it do? 1

Screenshots 1

Users manual 1

FAQ 1

Adminstration 1

FAQ 2

Configuration 2

FAQ 2

Reference 2

Tutorial 2

Known problems 2

To-Do list 2

Changelog 2

Introduction

Extension to add a new static table for occupations to the extension static_info_tables .

The table is called static_occupations , and the content is the International Standard Classification of Occupations (ISCO 88). See ht tp://en.wikipedia.org/wiki/International_Standard_Classification_of _Occupations.

Known problems

Code ISCO may have the '0' value, and this is a problem in the function getIsoCodeField of class.tx_staticinfotables_div.php , for now the solution is redefine the class. However it's provided a patch to solve this problem, the patch only change a line:

if ($isoCode && $table && ($isoCodeField = $TYPO3_CONF_VARS['EXTCONF'][STATIC_INFO_TABLES_EXTkey]['tables'][$table]['isocode_field'][$index])) {

for:

if (($isoCode !== '') && $table && ($isoCodeField = $TYPO3_CONF_VARS['EXTCONF'][STATIC_INFO_TABLES_EXTkey]['tables'][$table]['isocode_field'][$index])) {

To-Do list

  • Delete class.ux_tx_staticinfotables_div.php when patch_static_info_tables.diff is applied to static_info_tables official release.
  • Delete patch_static_info_tables.diff .

Changelog

0.9.0: First public release

img-1 EXT: Static Info Tables Extension - 2