actions_load
Definition
actions_load($aid)
includes/actions.inc, line 349
Description
Retrieve a single action from the database.
Parameters
$aid integer The ID of the action to retrieve.
Return value
The appropriate action row from the database as an object.
Code
<?php
function actions_load($aid) {
return db_fetch_object(db_query("SELECT * FROM {actions} WHERE aid = %d", $aid));
}
?> 