small adjustments in test importer

This commit is contained in:
Leo Germani 2018-08-25 20:23:55 -03:00
parent e3ddc61805
commit b4b9982939
1 changed files with 6 additions and 2 deletions

View File

@ -287,7 +287,7 @@ class Test_Importer extends Importer {
<h5><?php _e('Keyword Search', 'tainacan'); ?></h5> <h5><?php _e('Keyword Search', 'tainacan'); ?></h5>
</div> </div>
<div class="help-tooltip-body"> <div class="help-tooltip-body">
<p><?php _e('Type one keyword which it will be used to find images in flickr (e.g. dogs, cat)', 'tainacan'); ?></p> <p><?php _e('Optionally ype one keyword which it will be used to find images in flickr (e.g. dogs, cat). Default is "kitten".', 'tainacan'); ?></p>
</div> </div>
</div> </div>
</span> </span>
@ -595,6 +595,10 @@ class Test_Importer extends Importer {
} }
/**
* Example of a method that takes a long time to run
* and may run through multiple requests
*/
public function finish_processing() { public function finish_processing() {
$this->add_log('finish_processing'); $this->add_log('finish_processing');
@ -651,7 +655,7 @@ class Test_Importer extends Importer {
$inserted_item->set_document( $id ); $inserted_item->set_document( $id );
$inserted_item->set_document_type( 'attachment' ); $inserted_item->set_document_type( 'attachment' );
$this->add_log('Document URL imported from ' . $correct_value); $this->add_log('Document URL imported from ' . $url);
if( $inserted_item->validate() ) { if( $inserted_item->validate() ) {
$inserted_item = $this->items_repo->update($inserted_item); $inserted_item = $this->items_repo->update($inserted_item);