2010-02-11 00:06:35 +01:00
< ? php
/**
* Imports { @ link Group } records by CSV upload , as defined in
* { @ link GroupCsvBulkLoader } .
*
* @ package cms
* @ subpackage batchactions
*/
class GroupImportForm extends Form {
/**
* @ var Group Optional group relation
*/
protected $group ;
function __construct ( $controller , $name , $fields = null , $actions = null , $validator = null ) {
if ( ! $fields ) {
2010-02-11 03:22:45 +01:00
$helpHtml = _t (
'GroupImportForm.Help1' ,
'<p>Import one or more groups in <em>CSV</em> format (comma-separated values). <small><a href="#" class="toggle-advanced">Show advanced usage</a></small></p>'
);
$helpHtml .= _t (
'GroupImportForm.Help2' ,
' < div class = " advanced " >
< h4 > Advanced usage </ h4 >
< ul >
< li > Allowed columns : < em >% s </ em ></ li >
< li > Existing groups are matched by their unique < em > Code </ em > value , and updated with any new values from the imported file </ li >
< li > Group hierarchies can be created by using a < em > ParentCode </ em > column .</ li >
< li > Permission codes can be assigned by the < em > PermissionCode </ em > column . Existing permission codes are not cleared .</ li >
</ ul >
</ div > ' );
$importer = new GroupCsvBulkLoader ();
$importSpec = $importer -> getImportSpec ();
$helpHtml = sprintf ( $helpHtml , implode ( ', ' , array_keys ( $importSpec [ 'fields' ])));
2010-02-11 00:06:35 +01:00
$fields = new FieldSet (
2010-02-11 03:22:45 +01:00
new LiteralField ( 'Help' , $helpHtml ),
2010-02-11 00:06:35 +01:00
$fileField = new FileField (
'CsvFile' ,
_t (
'SecurityAdmin_MemberImportForm.FileFieldLabel' ,
'CSV File <small>(Allowed extensions: *.csv)</small>'
)
)
);
2010-05-25 06:48:57 +02:00
$fileField -> getValidator () -> setAllowedExtensions ( array ( 'csv' ));
2010-02-11 00:06:35 +01:00
}
if ( ! $actions ) $actions = new FieldSet (
new FormAction ( 'doImport' , _t ( 'SecurityAdmin_MemberImportForm.BtnImport' , 'Import' ))
);
if ( ! $validator ) $validator = new RequiredFields ( 'CsvFile' );
parent :: __construct ( $controller , $name , $fields , $actions , $validator );
2010-02-11 03:22:45 +01:00
$this -> addExtraClass ( 'import-form' );
2010-02-11 00:06:35 +01:00
}
function doImport ( $data , $form ) {
$loader = new GroupCsvBulkLoader ();
// load file
$result = $loader -> load ( $data [ 'CsvFile' ][ 'tmp_name' ]);
// result message
$msgArr = array ();
if ( $result -> CreatedCount ()) $msgArr [] = sprintf (
_t ( 'GroupImportForm.ResultCreated' , 'Created %d groups' ),
$result -> CreatedCount ()
);
if ( $result -> UpdatedCount ()) $msgArr [] = sprintf (
_t ( 'GroupImportForm.ResultUpdated' , 'Updated %d groups' ),
$result -> UpdatedCount ()
);
if ( $result -> DeletedCount ()) $msgArr [] = sprintf (
_t ( 'GroupImportForm.ResultDeleted' , 'Deleted %d groups' ),
$result -> DeletedCount ()
);
$msg = ( $msgArr ) ? implode ( ',' , $msgArr ) : _t ( 'MemberImportForm.ResultNone' , 'No changes' );
$this -> sessionMessage ( $msg , 'good' );
2010-10-13 04:10:28 +02:00
$this -> redirectBack ();
2010-02-11 00:06:35 +01:00
}
}
?>