open20/amos-core

There is no license information available for the latest version (1.34.11) of this package.

Amos Core

This package is auto-updated.

Last update: 2024-03-29 09:30:12 UTC


README

Amos core

using the loader (SpinnerWaitAsset)

in the view insert che code below

 \open20\amos\layout\assets\SpinnerWaitAsset::register($this);
 <div class="loading" id="loader" hidden></div>

use the two javascript functions below where you need it

    $('.loading').show();
    $('.loading').hide();

Platform params

hideSettings

Hide the setting gear in the navbar, If you want to hide the link for all

      'hideSettings' => true,

if you want to hide the link for some users

      'hideSettings' => [
          'roles' => ['ROLE1', 'ROLE2']
      ],

if you want to export only the element visualized in the grid

      'disableExportAll' => true

Widget share social

Add in backend/config/components-others

        'socialShare' => [
            'class' => \open20\amos\core\components\ConfiguratorSocialShare::class,
        ],
Parameters
  • mode - string, default = SocialShareWidget::NORMAL, the otther mode is SocialShareWidget::DROPDOWN

example of usage:

         <?= \open20\amos\core\forms\editors\socialShareWidget\SocialShareWidget::widget([
                'configuratorId' => 'socialShare',
                'model' => $model,
                'url'           => \yii\helpers\Url::to(\Yii::$app->params['platform']['backendUrl'].'/news/news/view?id='.$model->id, true),
                'title'         => $model->title,
                'description'   => $model->descrizione_breve,
//                'imageUrl'      => \yii\helpers\Url::to('absolute/route/to/image.png', true),

            ]); ?>

Custom the Frontend View Url

  • Implement the interface CustomUrlModelInterface
  • Add in common/config/params
        'urlFrontend' => [
                'NewsModel' => '/news/news/{Id}/{Slug}',
            ],

Platform Parameters

  • enablePageCache - boolean; If the params is true enable the page cache