: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
this.options = options || {};
Backbone.View.apply( this, arguments );
* Removes this view and all subviews.
* @return {wp.Backbone.Subviews} The current Subviews instance.
var result = Backbone.View.prototype.remove.apply( this, arguments );
// Recursively remove child views.
* Renders this view and all subviews.
* @return {wp.Backbone.View} The current instance of the view.
options = this.prepare();
this.trigger( 'prepare', options );
this.$el.html( this.template( options ) );
* Returns the options for this view.
* @return {Object} The options for this view.
* Method that is called when the ready event is triggered.