Fix fetch with empty args to return everything
This commit is contained in:
parent
4ac33d8819
commit
20b56854a3
|
@ -178,7 +178,7 @@ class Filters extends Repository {
|
|||
public function fetch($args = [], $output = null){
|
||||
if( is_numeric($args) ){
|
||||
return new Entities\Filter($args);
|
||||
} elseif (!empty($args)) {
|
||||
} elseif (is_array($args)) {
|
||||
// TODO: get filters from parent collections
|
||||
$args = array_merge([
|
||||
'posts_per_page' => -1,
|
||||
|
|
|
@ -61,9 +61,11 @@ class Items extends Repository {
|
|||
}
|
||||
|
||||
// register taxonomies
|
||||
foreach ($taxonomies as $taxonomy) {
|
||||
$taxonomy->register_taxonomy();
|
||||
}
|
||||
if (is_array($taxonomies) && sizeof($taxonomies) > 0) {
|
||||
foreach ($taxonomies as $taxonomy) {
|
||||
$taxonomy->register_taxonomy();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function insert($item) {
|
||||
|
|
|
@ -124,7 +124,7 @@ class Logs extends Repository {
|
|||
public function fetch($args = [], $output = null){
|
||||
if(is_numeric($args)){
|
||||
return new Entities\Log($args);
|
||||
} else {
|
||||
} elseif (is_array($args)) {
|
||||
$args = array_merge([
|
||||
'post_status' => 'publish',
|
||||
], $args);
|
||||
|
|
|
@ -202,7 +202,7 @@ class Metadatas extends Repository {
|
|||
|
||||
if( is_numeric($args) ){
|
||||
return new Entities\Metadata($args);
|
||||
} elseif (!empty($args)) {
|
||||
} elseif (is_array($args)) {
|
||||
|
||||
$args = array_merge([
|
||||
'posts_per_page' => -1,
|
||||
|
|
|
@ -163,7 +163,7 @@ class Taxonomies extends Repository {
|
|||
|
||||
if( is_numeric($args) ){
|
||||
return new Entities\Taxonomy($args);
|
||||
} elseif (!empty($args)) {
|
||||
} elseif (is_array($args)) {
|
||||
|
||||
$args = array_merge([
|
||||
'posts_per_page' => -1,
|
||||
|
|
Loading…
Reference in New Issue