last_visited_enabled [line 38]
true: last_visited_enabled(
)
|
|
Determine if last visited feature is enabled
API Tags:
| Return: | enabled; false: otherwise. |
| Access: | public |
last_visited_get_array [line 80]
An last_visited_get_array(
[user_id $p_user_id = null]
)
|
|
Get an array of the last visited bug ids. We intentionally don't check if the ids still exists to avoid performance degradation.
Parameters:
|
user_id |
$p_user_id: |
The user id to get the last visited issues for, or null for current logged in user. |
API Tags:
| Return: | array of issue ids or an empty array if none found. |
| Access: | public |
last_visited_issue [line 51]
void last_visited_issue(
issue_id $p_issue_id, [user_id $p_user_id = null]
)
|
|
This method should be called from view, update, print pages for issues, mantisconnect.
Parameters:
|
issue_id |
$p_issue_id: |
The issue id that was justed visited. |
|
user_id |
$p_user_id: |
The user id that visited the issue, or null for current logged in user. |
API Tags: