class flag_handler_argument_content_id in Flag 6
Same name and namespace in other branches
- 6.2 includes/flag_handler_argument_content_id.inc \flag_handler_argument_content_id
- 7.2 includes/flag_handler_argument_content_id.inc \flag_handler_argument_content_id
Handler to accept an argument of the content ID of any object.
Hierarchy
- class \flag_handler_argument_content_id extends \views_handler_argument_numeric
Expanded class hierarchy of flag_handler_argument_content_id
1 string reference to 'flag_handler_argument_content_id'
- flag_views_data in includes/
flag.views.inc - Implementation of hook_views_data().
File
- includes/
flag_handler_argument_content_id.inc, line 13 - Contains the content ID argument handler.
View source
class flag_handler_argument_content_id extends views_handler_argument_numeric {
/**
* Returns the flag object associated with our argument.
*
* An argument is in some relationship. This function reaches out for this
* relationship and reads its 'flag' option, which holds the flag name.
*/
function get_flag() {
$flag_name = $this->view->relationship[$this->options['relationship']]->options['flag'];
return flag_get_flag($flag_name);
}
/**
* Override the behavior of title(). Get the title of the appropriate objects.
*/
function title_query() {
$flag = $this
->get_flag();
$views_info = $flag
->get_views_info();
$titles = array();
$placeholders = implode(', ', array_fill(0, sizeof($this->value), '%d'));
$result = db_query("SELECT o." . $views_info['title field'] . " FROM {" . $views_info['views table'] . "} o WHERE o." . $views_info['join field'] . " IN ({$placeholders})", $this->value);
while ($title = db_fetch_object($result)) {
$titles[] = check_plain($title->{$views_info}['title field']);
}
return $titles;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
flag_handler_argument_content_id:: |
function | Returns the flag object associated with our argument. | ||
flag_handler_argument_content_id:: |
function | Override the behavior of title(). Get the title of the appropriate objects. |