General settings:


get('main'); $model = $conf_obj->get_config_model('main'); $line = ''; # For now there's no use to the 'form_field' setting, as main only uses select, user only inputs foreach ( $model as $key => $item ) { $line .= ''; $line .= ''; $line .= ''; } echo "$line\n"; ?>


User management:


get('users'); $model = $conf_obj->get_config_model('users'); $line = ''; foreach ( $conf as $user => $data ) { $line .= ""; foreach ( $model as $key => $item ) { $line .= ''; $val = ""; if( array_key_exists( $key, $data ) ) { $val = $data[$key]; } else if( array_key_exists( 'masks', $item ) && $item['masks'] == 'parent' ) { $val = $user; } $line .= ''; } } echo "$line\n"; ?>
Manage user '$user'


Add User:

$item ) { $line .= ''; $line .= ''; } echo "$line\n"; ?>


Theme cloner:


Want to write your own theme? Clone a theme here then see the styling guide for information on how tCMS' templates, image sets and CSS work in the theming system.

INSERT FORM HERE