wip from prod

This commit is contained in:
Joey Kimsey
2025-01-03 15:06:34 -05:00
parent 1ef85c6c2c
commit 7170cb20a0
22 changed files with 219 additions and 487 deletions

View File

@ -569,7 +569,7 @@ class Bookmarks extends Controller {
self::$title = 'Bookmark Dashboards - {SITENAME}';
if ( !App::$isMember ) {
Issues::add( 'notice', 'You will need an active subscription to start creating dashboards. You can check our <a href="/member/join">Pricing</a> page for more details.' );
Issues::add( 'notice', 'You will need an active subscription to start creating dashboards. You can check our <a href="/member/join" class="text-decoration-none">Pricing</a> page for more details.' );
return Views::view( 'bookmarks.dashboardExplainer' );
}
$dashboards = self::$dashboards->byUser();
@ -691,7 +691,7 @@ class Bookmarks extends Controller {
public function import() {
self::$title = 'Bookmark Import - {SITENAME}';
if ( !App::$isMember ) {
Issues::add( 'notice', 'You will need an active subscription to start importing bookmarks. You can check our <a href="/member/join">Pricing</a> page for more details.' );
Issues::add( 'notice', 'You will need an active subscription to start importing bookmarks. You can check our <a href="/member/join" class="text-decoration-none">Pricing</a> page for more details.' );
return Views::view( 'bookmarks.importExplainer' );
}
@ -743,7 +743,7 @@ class Bookmarks extends Controller {
public function export() {
self::$title = 'Bookmark Export - {SITENAME}';
if ( !App::$isMember ) {
Issues::add( 'notice', 'You will need an active subscription to start exporting bookmarks. You can check our <a href="/member/join">Pricing</a> page for more details.' );
Issues::add( 'notice', 'You will need an active subscription to start exporting bookmarks. You can check our <a href="/member/join" class="text-decoration-none">Pricing</a> page for more details.' );
return Views::view( 'bookmarks.exportExplainer' );
}
@ -806,7 +806,7 @@ class Bookmarks extends Controller {
}
}
public function share( $id = '' ) {
public function share() {
$panelArray = [];
$folders = self::$folders->byUser();
if ( empty( $folders ) ) {