MDL-14591 - adding my name next to todos so I can find them later

This commit is contained in:
mjollnir_
2008-08-19 14:30:49 +00:00
parent 3403520190
commit 313f21cef0
3 changed files with 9 additions and 9 deletions
+4 -4
View File
@@ -2475,13 +2475,13 @@ class data_portfolio_caller extends portfolio_module_caller_base {
}
}
$this->delimiter = array_key_exists('delimiter_name', $callbackargs) ? $callbackargs['delimiter_name'] : null;
$this->exporttype = array_key_exists('exporttype', $callbackargs) ? $callbackargs['exporttype'] : 'csv'; //@todo later support more
$this->exporttype = array_key_exists('exporttype', $callbackargs) ? $callbackargs['exporttype'] : 'csv'; //@todo penny later support more
$this->exportdata = data_get_exportdata($this->cm->instance, $this->fields, $this->selectedfields);
}
}
public function has_export_config() {
// @todo later when we suport exporting to more than just csv, we may need to ask the user here
// @todo penny later when we suport exporting to more than just csv, we may need to ask the user here
// if we have not already passed it
return false;
}
@@ -2490,7 +2490,7 @@ class data_portfolio_caller extends portfolio_module_caller_base {
if ($this->exporttype == 'single') {
return PORTFOLIO_TIME_LOW;
}
//@todo check number of records maybe
//@todo penny check number of records maybe
return PORTFOLIO_TIME_MODERATE;
}
@@ -2575,7 +2575,7 @@ class data_portfolio_caller extends portfolio_module_caller_base {
$patterns[]='[['.$field->field->name.']]';
if ($field instanceof data_field_file) {
// meh, do something special
// @todo extract the file and put it in the working directory
// @todo penny extract the file and put it in the working directory
// and write out the filename here. (files api)
$replacement[] = $field->display_browse_field($this->singlerecord->id, 'singletemplate');
} else {
+4 -4
View File
@@ -7133,7 +7133,7 @@ class forum_portfolio_caller extends portfolio_module_caller_base {
// a single post, with or without attachment
// or just an attachment with no post
if (!$this->post) { // whole discussion
throw new portfolio_caller_exception('TODO: exporting whole discussion not implemented - see MDL-15758');
throw new portfolio_caller_exception('TODO PENNY: exporting whole discussion not implemented - see MDL-15758');
} else {
$status = true;
if ($this->files) {
@@ -7228,16 +7228,16 @@ class forum_portfolio_caller extends portfolio_module_caller_base {
}
return sha1($attachsha1 . ',' . $this->post->subject . ',' . $this->post->message);
}
throw new portfolio_caller_exception('TODO: exporting whole discussion not implemented - see MDL-15758');
throw new portfolio_caller_exception('TODO PENNY: exporting whole discussion not implemented - see MDL-15758');
}
function expected_time() {
// @todo check for attachment size
// @todo penny check for attachment size
return PORTFOLIO_TIME_LOW;
}
function check_permissions() {
//@todo
//@todo penny
return true;
}
+1 -1
View File
@@ -2397,7 +2397,7 @@ class glossary_csv_portfolio_caller extends portfolio_module_caller_base {
}
public function expected_time() {
//@todo check number of records maybe
//@todo penny check number of records maybe
return PORTFOLIO_TIME_MODERATE;
}