diff --git a/airtime_mvc/application/configs/ACL.php b/airtime_mvc/application/configs/ACL.php index ae6d83625..843cfff30 100644 --- a/airtime_mvc/application/configs/ACL.php +++ b/airtime_mvc/application/configs/ACL.php @@ -62,6 +62,7 @@ $ccAcl->allow('G', 'index') ->allow('G', 'rest:show-image', 'get') ->allow('G', 'rest:media', 'get') ->allow('G', 'setup') + ->allow('G', 'embeddablewidgets') ->allow('H', 'soundcloud') ->allow('H', 'rest:show-image') ->allow('H', 'rest:media') @@ -76,8 +77,6 @@ $ccAcl->allow('G', 'index') ->allow('A', 'user') ->allow('A', 'systemstatus') ->allow('A', 'preference') - ->allow('A', 'player') - ->allow('A', 'embeddablewidgets') ->allow('S', 'thank-you') ->allow('S', 'billing'); diff --git a/airtime_mvc/application/configs/constants.php b/airtime_mvc/application/configs/constants.php index a1f8a5f4c..c1b1edca1 100644 --- a/airtime_mvc/application/configs/constants.php +++ b/airtime_mvc/application/configs/constants.php @@ -20,6 +20,7 @@ define('USER_MANUAL_URL' , 'http://sourcefabric.booktype.pro/airtime- define('ABOUT_AIRTIME_URL' , 'https://www.airtime.pro/support/'); define('AIRTIME_TRANSIFEX_URL' , 'https://www.transifex.com/projects/p/airtime/'); define('WHMCS_PASSWORD_RESET_URL' , 'https://account.sourcefabric.com/pwreset.php'); +define('SUPPORT_TICKET_URL' , 'https://sourcefabricberlin.zendesk.com/hc/en-us/requests/new'); define('LICENSE_VERSION' , 'GNU AGPL v.3'); define('LICENSE_URL' , 'http://www.gnu.org/licenses/agpl-3.0-standalone.html'); diff --git a/airtime_mvc/application/configs/navigation.php b/airtime_mvc/application/configs/navigation.php index b54356f5c..40bb48484 100644 --- a/airtime_mvc/application/configs/navigation.php +++ b/airtime_mvc/application/configs/navigation.php @@ -27,6 +27,7 @@ $pages = array( 'module' => 'default', 'controller' => 'embeddablewidgets', 'action' => 'player', + 'resource' => 'embeddablewidgets', 'title' => 'Widgets', 'pages' => array( array( @@ -152,11 +153,6 @@ $pages = array( 'action' => 'help', 'resource' => 'dashboard' ), - array( - 'label' => _('Help Center'), - 'uri' => HELP_URL, - 'target' => "_blank" - ), array( 'label' => _('FAQ'), 'uri' => FAQ_URL, @@ -167,6 +163,11 @@ $pages = array( 'uri' => USER_MANUAL_URL, 'target' => "_blank" ), + array( + 'label' => _('File a Support Ticket'), + 'uri' => SUPPORT_TICKET_URL, + 'target' => "_blank" + ), array( 'label' => _(sprintf("Help Translate %s", PRODUCT_NAME)), 'uri' => AIRTIME_TRANSIFEX_URL, diff --git a/airtime_mvc/application/views/scripts/dashboard/help.phtml b/airtime_mvc/application/views/scripts/dashboard/help.phtml index e318a05e6..c354eb01d 100644 --- a/airtime_mvc/application/views/scripts/dashboard/help.phtml +++ b/airtime_mvc/application/views/scripts/dashboard/help.phtml @@ -8,6 +8,8 @@
  • + +
  • diff --git a/airtime_mvc/public/css/addmedia.css b/airtime_mvc/public/css/addmedia.css index 64cc4b6c0..1a225a175 100644 --- a/airtime_mvc/public/css/addmedia.css +++ b/airtime_mvc/public/css/addmedia.css @@ -628,3 +628,11 @@ table#recent_uploads_table td /*border-bottom: 6px solid #be2626;*/ /*transform: rotate(-90deg);*/ } + +.dataTables_scrolling { + position: absolute; + bottom: 37px; /* 36 px is the size of the header/footer + 1px because there's no internal border */ + top: 37px; + left: 0; + right: 0; +} diff --git a/airtime_mvc/public/css/dashboard.css b/airtime_mvc/public/css/dashboard.css index cd1188c31..b5d858dda 100644 --- a/airtime_mvc/public/css/dashboard.css +++ b/airtime_mvc/public/css/dashboard.css @@ -630,3 +630,10 @@ th.library_checkbox { border: none; } +.dataTables_scrolling { + position: absolute; + bottom: 37px; /* 36 px is the size of the header/footer + 1px because there's no internal border */ + top: 37px; + left: 0; + right: 0; +} diff --git a/airtime_mvc/public/css/styles.css b/airtime_mvc/public/css/styles.css index 1551a876f..91c109c8d 100644 --- a/airtime_mvc/public/css/styles.css +++ b/airtime_mvc/public/css/styles.css @@ -3841,10 +3841,4 @@ li .ui-state-hover { flex: 1; } -.dataTables_scrolling { - position: absolute; - bottom: 37px; /* 36 px is the size of the header/footer + 1px because there's no internal border */ - top: 37px; - left: 0; - right: 0; -} +