function NotificationsContentTests::countUserRows in Notifications 6.2
Same name and namespace in other branches
- 6.4 tests/notifications_content.test \NotificationsContentTests::countUserRows()
- 6 tests/notifications_content.test \NotificationsContentTests::countUserRows()
- 6.3 tests/notifications_content.test \NotificationsContentTests::countUserRows()
- 7 tests/notifications_content.test \NotificationsContentTests::countUserRows()
1 call to NotificationsContentTests::countUserRows()
- NotificationsContentTests::testNotificationsContent in tests/
notifications_content.test - Play with creating, retrieving, deleting a pair subscriptions
File
- tests/
notifications_content.test, line 320
Class
- NotificationsContentTests
- Class for testing notifications module. Tests basic API functions
Code
function countUserRows($table, $uid = NULL) {
return db_result(db_query("SELECT COUNT(*) FROM {" . $table . "} WHERE uid = %d", $uid));
}