From: Max Shinn Date: Sat, 25 Dec 2010 21:56:46 +0000 (-0600) Subject: Show photos on all of a user's pages X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a10a9c4a90afdb20d9f340708a74c9d0ea5e1e30;p=quix0rs-gnu-social.git Show photos on all of a user's pages --- diff --git a/plugins/GNUsocialPhotos/GNUsocialPhotosPlugin.php b/plugins/GNUsocialPhotos/GNUsocialPhotosPlugin.php index 5b77475c83..d0a58533df 100644 --- a/plugins/GNUsocialPhotos/GNUsocialPhotosPlugin.php +++ b/plugins/GNUsocialPhotos/GNUsocialPhotosPlugin.php @@ -51,10 +51,10 @@ class GNUsocialPhotosPlugin extends Plugin include_once $dir . '/lib/photolib.php'; include_once $dir . '/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php'; break; - case 'PhotoAction': - include_once $dir . '/lib/photolib.php'; - include_once $dir . '/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php'; - break; + case 'PhotoAction': + include_once $dir . '/lib/photolib.php'; + include_once $dir . '/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php'; + break; default: break; } @@ -71,13 +71,13 @@ class GNUsocialPhotosPlugin extends Plugin new ColumnDef('album_id', 'int(11)', null, false), new ColumnDef('uri', 'varchar(512)', null, false), new ColumnDef('thumb_uri', 'varchar(512)', null, false), - new ColumnDef('title', 'varchar(512)', null, false), - new ColumnDef('photo_description', 'text', null, false))); + new ColumnDef('title', 'varchar(512)', null, false), + new ColumnDef('photo_description', 'text', null, false))); $schema->ensureTable('GNUsocialPhotoAlbum', array(new ColumnDef('album_id', 'int(11)', null, false, 'PRI', null, null, true), new ColumnDef('profile_id', 'int(11)', null, false), new ColumnDef('album_name', 'varchar(256)', null, false), - new ColumnDef('album_description', 'text', null, false))); + new ColumnDef('album_description', 'text', null, false))); } @@ -85,7 +85,7 @@ class GNUsocialPhotosPlugin extends Plugin { $m->connect(':nickname/photos', array('action' => 'photos')); $m->connect('main/uploadphoto', array('action' => 'photoupload')); - $m->connect(':nickname/photo/:photoid', array('action' => 'photo')); + $m->connect(':nickname/photo/:photoid', array('action' => 'photo')); return true; } @@ -176,9 +176,7 @@ class GNUsocialPhotosPlugin extends Plugin function onEndPersonalGroupNav($nav) { - if($nav->action instanceof ShowstreamAction) { - $nav->out->menuItem(common_local_url('photos', - array('nickname' => $nav->action->trimmed('nickname'))), 'Photos'); - } + $nav->out->menuItem(common_local_url('photos', + array('nickname' => $nav->action->trimmed('nickname'))), 'Photos'); } }