LLMS_Post_Model::jsonSerialize()


Source Source

File: includes/abstracts/abstract.llms.post.model.php

1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
public function jsonSerialize() {
    /**
     * Filters the properties of the model that *cannot* be set
     *
     * @since 3.3.0
     *
     * @param array           $model     Array representation of the LLMS_Post_Model object.
     * @param LLMS_Post_Model $llms_post The LLMS_Post_Model instance.
     */
    return apply_filters( 'llms_post_model_json_serialize', $this->toArray(), $this );
}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.