There are no products in your shopping cart.
| 0 Items | $0.00 |
| Title | Replies |
Last Post |
|---|---|---|
| IEP (Individual Education Plan) Experiences on Blog Talk Radio | 0 | 2009-09-26 16:49 |
| Lisa | 0 | 2009-07-06 08:30 |
| lisa | 0 | 2009-07-04 10:46 |
| Relationship Between Dyslexia and Mixed Dominance | 0 | 2009-06-25 21:03 |
| Fixing Academics | 1 | 2009-06-24 10:25 |
| Get Our Free Learning Disability Video Series - Help Your Child Succeed | 1 | 2009-06-22 12:55 |
| What materials do I need? | 1 | 2008-11-18 08:44 |
| hand | 0 | 2008-09-21 11:27 |
| aud | 0 | 2008-09-21 11:16 |
| vis 1 | 0 | 2008-09-21 11:09 |
<?php
// Hello. If you are reading this text and you are not editing this View,
// you probably didn't expect to see this text here. Luckily, it's very
// easy to fix that. You're seeing this text because it is in the
// "Empty text" of this View, and the user whose stream you are viewing
// has no statuses. To stop seeing this text, you must edit your View
// (which you can do through the user interface at admin/build/views or
// by clicking on the "Edit" link that appears when hovering your mouse
// over the View). On the Edit screen for the view, click to change the
// "Empty text" option in the "Basic settings" section. Then, either
// change the input format of the Empty text to "PHP code" (you must
// have the "PHP filter" module enabled) or remove the text.
// For more information, please read http://drupal.org/node/551698#php
//If this view is overridden and then FBSS is disabled, it can
//cause a WSOD if these lines are not included here.
if (!function_exists('_facebook_status_user_load')) {
echo t('Facebook-style Statuses has been disabled.');
return;
}
$account = _facebook_status_user_load(arg(1));
if (!$account->uid) {
echo t('This user has no statuses yet.');
return;
}
$count = facebook_status_has_status(arg(1));
if (!$count) {
global $user;
if ($user->uid == $account->uid) {
echo t('You have no statuses yet.');
}
else {
echo t('@name has no statuses yet.', array('@name' => check_plain($account->name)));
}
}
?>