You are here

public function QuickQtabsContent::getAjaxKeys in Quick Tabs 7.3

Returns an array of keys to use for constructing the correct arguments for an ajax callback to retrieve content of this type. The order of the keys returned affects the order of the args passed in to the render method when called via ajax (see the render() method above).

Overrides QuickContentRenderable::getAjaxKeys

File

plugins/QuickQtabsContent.inc, line 62

Class

QuickQtabsContent
Class for tab content of type "qtabs" - this is for rendering a QuickSet instance as the tab content of another QuickSet instance.

Code

public function getAjaxKeys() {
  return array(
    'machine_name',
  );
}