Gentics Portal.Node PHP API
 All Classes Namespaces Functions Variables Pages
index.php
1 <?php
2 
3 $this->breadcrumbs = array(
4  UserModule::t('Users') => array('admin'),
5  UserModule::t('Import'),
6 );
7 
8 ?>
9 
10 <h1><?php echo UserModule::t("Import Users"); ?></h1>
11 
12 <?php echo $this->renderPartial('user.views.admin._menu', array(
13  'list' => array(
14  CHtml::link(UserModule::t('Create User'), array('create')),
15  CHtml::link(UserModule::t('Import Users'), array('import/index')),
16  ),
17 ));
18 /*
19  * Form to upload a new file
20  */
21 $this->renderPartial('user.views.import._upload_form', array('importFile'=>$importFile));
22 /*
23  * Form to show users date
24  */
25 $this->renderPartial('user.views.import._users_table',
26  array(
27  'importFile'=>$importFile,
28  ));
29 ?>