function slickgrid_editors::update in Slickgrid 7
Same name and namespace in other branches
- 7.2 plugins/editors/handler.class.php \slickgrid_editors::update()
Do the actual update - passes the update to the plugin's process functions
File
- plugins/
editors/ handler.class.php, line 56
Class
- slickgrid_editors
- Base class for export UI.
Code
function update() {
if (function_exists($this->plugin['process'])) {
$this->plugin['process']($this);
}
return $this
->get_result();
}