Definition:
function upload_space_setting( $id ) {}
Parameters
- $id
Source code
function upload_space_setting( $id ) {
$quota = get_blog_option( $id, 'blog_upload_space' );
if ( !$quota )
$quota = '';
?>
<tr>
<th><?php _e( 'Site Upload Space Quota '); ?></th>
<td><input type="text" size="3" name="option[blog_upload_space]" value="<?php echo $quota; ?>" /> <?php _e( 'MB (Leave blank for network default)' ); ?></td>
</tr>
<?php
}
3263

February 12, 2011 


No comments yet... Be the first to leave a reply!