fix identations
This commit is contained in:
parent
20b5299254
commit
0fb53b61c4
|
@ -303,10 +303,9 @@ class Collections extends Repository {
|
||||||
* @see \Tainacan\Repositories\Repository::insert()
|
* @see \Tainacan\Repositories\Repository::insert()
|
||||||
*/
|
*/
|
||||||
public function insert( $collection ) {
|
public function insert( $collection ) {
|
||||||
|
|
||||||
$this->pre_process( $collection );
|
$this->pre_process( $collection );
|
||||||
|
|
||||||
$this->handle_parent_order_clone( $collection );
|
$this->handle_parent_order_clone( $collection );
|
||||||
|
|
||||||
$new_collection = parent::insert( $collection );
|
$new_collection = parent::insert( $collection );
|
||||||
|
|
||||||
$this->handle_core_metadata( $new_collection );
|
$this->handle_core_metadata( $new_collection );
|
||||||
|
@ -389,12 +388,9 @@ class Collections extends Repository {
|
||||||
}
|
}
|
||||||
|
|
||||||
function pre_process( $collection ) {
|
function pre_process( $collection ) {
|
||||||
|
|
||||||
$this->old_collection = $this->fetch( $collection->get_id() );
|
$this->old_collection = $this->fetch( $collection->get_id() );
|
||||||
$this->old_core_title = $collection->get_core_title_metadatum();
|
$this->old_core_title = $collection->get_core_title_metadatum();
|
||||||
$this->old_core_description = $collection->get_core_description_metadatum();
|
$this->old_core_description = $collection->get_core_description_metadatum();
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function handle_core_metadata( $collection ) {
|
function handle_core_metadata( $collection ) {
|
||||||
|
|
Loading…
Reference in New Issue