function _eb_custom_slider_post_exists in Featured Content Slider 7.2
Same name in this branch
- 7.2 contrib/eb_custom_slider.module \_eb_custom_slider_post_exists()
- 7.2 contrib/custom_slider/eb_custom_slider.module \_eb_custom_slider_post_exists()
helper function to determine if a user has slider posts already.
File
- contrib/
eb_custom_slider.module, line 293 - display content in 'featured content' block using jquery.
Code
function _eb_custom_slider_post_exists($account) {
return (bool) db_result(db_query_range(db_rewrite_sql("SELECT 1 FROM {node} n WHERE n.type = 'eb_custom_slider' AND n.uid = %d AND n.status = 1"), $account->uid, 0, 1));
}