actions_load

Versions
mediamosa-21
actions_load($aid)

Retrieves a single action from the database.

Parameters

$aid The ID of the action to retrieve.

Return value

The appropriate action row from the database as an object.

Code

includes/actions.inc, line 360

<?php
function actions_load($aid) {
  return db_query("SELECT aid, type, callback, parameters, label FROM {actions} WHERE aid = :aid", array(':aid' => $aid))->fetchObject();
}
?>