You are here

function panels_renderer_standard::get_panels_storage_op_for_ajax in Panels 7.3

Get the Panels storage oparation for a given renderer AJAX method.

Parameters

string $method: The method name.

Return value

string The Panels storage op.

1 call to panels_renderer_standard::get_panels_storage_op_for_ajax()
panels_renderer_editor::get_panels_storage_op_for_ajax in plugins/display_renderers/panels_renderer_editor.class.php
Get the Panels storage oparation for a given renderer AJAX method.
1 method overrides panels_renderer_standard::get_panels_storage_op_for_ajax()
panels_renderer_editor::get_panels_storage_op_for_ajax in plugins/display_renderers/panels_renderer_editor.class.php
Get the Panels storage oparation for a given renderer AJAX method.

File

plugins/display_renderers/panels_renderer_standard.class.php, line 204

Class

panels_renderer_standard

Code

function get_panels_storage_op_for_ajax($method) {
  return 'read';
}