add allow comments meta prop to collection
This commit is contained in:
parent
b028752b28
commit
eacd65d68d
|
@ -34,7 +34,8 @@ class Collection extends Entity {
|
||||||
$header_image_id,
|
$header_image_id,
|
||||||
$header_image,
|
$header_image,
|
||||||
$moderators_ids,
|
$moderators_ids,
|
||||||
$comment_status;
|
$comment_status,
|
||||||
|
$allow_comments;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
|
@ -502,6 +503,14 @@ class Collection extends Entity {
|
||||||
return $this->get_mapped_property('comment_status');
|
return $this->get_mapped_property('comment_status');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if comments are allowed for the current Collection Items.
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function get_allow_comments() {
|
||||||
|
return $this->get_mapped_property('allow_comments');
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the collection name
|
* Set the collection name
|
||||||
*
|
*
|
||||||
|
@ -703,6 +712,15 @@ class Collection extends Entity {
|
||||||
$this->set_mapped_property('comment_status', $value);
|
$this->set_mapped_property('comment_status', $value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets if comments are allowed for the current Collection Items.
|
||||||
|
*
|
||||||
|
* @param $value bool
|
||||||
|
*/
|
||||||
|
public function set_allow_comments( $value ) {
|
||||||
|
$this->set_mapped_property('allow_comments', $value );
|
||||||
|
}
|
||||||
|
|
||||||
// Moderators methods
|
// Moderators methods
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -154,7 +154,7 @@ class Entity {
|
||||||
* @return mixed property value
|
* @return mixed property value
|
||||||
*/
|
*/
|
||||||
public function get_mapped_property($prop) {
|
public function get_mapped_property($prop) {
|
||||||
if (isset($this->$prop) ){
|
if ( isset($this->$prop) ){
|
||||||
return $this->$prop;
|
return $this->$prop;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -199,9 +199,17 @@ class Collections extends Repository {
|
||||||
'map' => 'comment_status',
|
'map' => 'comment_status',
|
||||||
'title' => __( 'Comment Status', 'tainacan' ),
|
'title' => __( 'Comment Status', 'tainacan' ),
|
||||||
'type' => 'string',
|
'type' => 'string',
|
||||||
'description' => __( 'The status of collection comment, if is "open" the comments are allowed for collection items, or is "closed" for deny comments to items.', 'tainacan' ),
|
'description' => __( 'The status of collection comment, if is "open" the comments are allowed, or is "closed" for deny comments.', 'tainacan' ),
|
||||||
'default' => get_default_comment_status(Entities\Collection::get_post_type()),
|
'default' => get_default_comment_status(Entities\Collection::get_post_type()),
|
||||||
'validation' => v::optional(v::stringType()->in( [ 'open', 'closed' ] )),
|
'validation' => v::optional(v::stringType()->in( [ 'open', 'closed' ] )),
|
||||||
|
],
|
||||||
|
'allow_comments' => [
|
||||||
|
'map' => 'meta',
|
||||||
|
'title' => __( 'Allow Items Comments', 'tainacan' ),
|
||||||
|
'type' => 'string',
|
||||||
|
'description' => __( 'Collection items comment is allowed, if is "open" the comments are allowed for collection items, or is "closed" for deny comments to items.', 'tainacan' ),
|
||||||
|
'default' => 'open',
|
||||||
|
'validation' => v::optional(v::stringType()->in( [ 'open', 'closed' ] )),
|
||||||
]
|
]
|
||||||
|
|
||||||
] );
|
] );
|
||||||
|
|
|
@ -398,7 +398,7 @@ class Items extends Repository {
|
||||||
/**
|
/**
|
||||||
* Get a default thumbnail ID from the item document.
|
* Get a default thumbnail ID from the item document.
|
||||||
*
|
*
|
||||||
* @param EntitiesItem $item The item
|
* @param Entities\Item $item The item
|
||||||
*
|
*
|
||||||
* @return int|null The thumbnail ID or null if it was not possible to find a thumbnail
|
* @return int|null The thumbnail ID or null if it was not possible to find a thumbnail
|
||||||
*/
|
*/
|
||||||
|
@ -491,7 +491,7 @@ class Items extends Repository {
|
||||||
|
|
||||||
if($item != false && $item instanceof Entities\Item) {
|
if($item != false && $item instanceof Entities\Item) {
|
||||||
$collection = $item->get_collection();
|
$collection = $item->get_collection();
|
||||||
if($collection->get_comment_status() !== 'open' ) return false;
|
if( $collection->get_allow_comments() !== 'open' ) return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $open_comment;
|
return $open_comment;
|
||||||
|
|
Loading…
Reference in New Issue