Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../httpdocs/clone/wp-inclu.../js
File: wp-backbone.js
this.options = options || {};
[500] Fix | Delete
[501] Fix | Delete
Backbone.View.apply( this, arguments );
[502] Fix | Delete
},
[503] Fix | Delete
[504] Fix | Delete
/**
[505] Fix | Delete
* Removes this view and all subviews.
[506] Fix | Delete
*
[507] Fix | Delete
* @since 3.5.0
[508] Fix | Delete
*
[509] Fix | Delete
* @return {wp.Backbone.Subviews} The current Subviews instance.
[510] Fix | Delete
*/
[511] Fix | Delete
remove: function() {
[512] Fix | Delete
var result = Backbone.View.prototype.remove.apply( this, arguments );
[513] Fix | Delete
[514] Fix | Delete
// Recursively remove child views.
[515] Fix | Delete
if ( this.views )
[516] Fix | Delete
this.views.remove();
[517] Fix | Delete
[518] Fix | Delete
return result;
[519] Fix | Delete
},
[520] Fix | Delete
[521] Fix | Delete
/**
[522] Fix | Delete
* Renders this view and all subviews.
[523] Fix | Delete
*
[524] Fix | Delete
* @since 3.5.0
[525] Fix | Delete
*
[526] Fix | Delete
* @return {wp.Backbone.View} The current instance of the view.
[527] Fix | Delete
*/
[528] Fix | Delete
render: function() {
[529] Fix | Delete
var options;
[530] Fix | Delete
[531] Fix | Delete
if ( this.prepare )
[532] Fix | Delete
options = this.prepare();
[533] Fix | Delete
[534] Fix | Delete
this.views.detach();
[535] Fix | Delete
[536] Fix | Delete
if ( this.template ) {
[537] Fix | Delete
options = options || {};
[538] Fix | Delete
this.trigger( 'prepare', options );
[539] Fix | Delete
this.$el.html( this.template( options ) );
[540] Fix | Delete
}
[541] Fix | Delete
[542] Fix | Delete
this.views.render();
[543] Fix | Delete
return this;
[544] Fix | Delete
},
[545] Fix | Delete
[546] Fix | Delete
/**
[547] Fix | Delete
* Returns the options for this view.
[548] Fix | Delete
*
[549] Fix | Delete
* @since 3.5.0
[550] Fix | Delete
*
[551] Fix | Delete
* @return {Object} The options for this view.
[552] Fix | Delete
*/
[553] Fix | Delete
prepare: function() {
[554] Fix | Delete
return this.options;
[555] Fix | Delete
},
[556] Fix | Delete
[557] Fix | Delete
/**
[558] Fix | Delete
* Method that is called when the ready event is triggered.
[559] Fix | Delete
*
[560] Fix | Delete
* @since 3.5.0
[561] Fix | Delete
*/
[562] Fix | Delete
ready: function() {}
[563] Fix | Delete
});
[564] Fix | Delete
}(jQuery));
[565] Fix | Delete
[566] Fix | Delete
12
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function