17 lines
372 B
PHP
17 lines
372 B
PHP
<?php
|
|
|
|
/**
|
|
* Subclass for representing a row from the 'st_admin_generator_user_configuration' table.
|
|
*
|
|
*
|
|
*
|
|
* @package plugins.stAdminGeneratorPlugin.lib.model
|
|
*/
|
|
class AdminGeneratorUserConfiguration extends BaseAdminGeneratorUserConfiguration
|
|
{
|
|
public function setModuleNamespace($namespace)
|
|
{
|
|
parent::setModuleNamespace(md5($namespace));
|
|
}
|
|
}
|