private static function _g($name, $default = '')
 {
     return ESS_Database::get_option($name, $default);
 }
    private static function get_input_table_row(array $DATA_ = NULL)
    {
        ?>
<tr>
			<td width="20">&nbsp;</td>
			<th><?php 
        _e($DATA_['title'], 'dbem');
        ?>
</th>
			<td><input type="text" name="<?php 
        echo $DATA_['id'];
        ?>
" value="<?php 
        echo ESS_Database::get_option($DATA_['id']);
        ?>
" /></td>
		</tr><?php 
    }