ytubes/videos-admin

该包的最新版本(0.1.5)没有提供许可证信息。

视频管理包

0.1.5 2017-11-02 14:14 UTC

This package is not auto-updated.

Last update: 2024-09-22 07:38:06 UTC


README

后台视频模块

Composer

"require": {
    "ytubes/videos-admin": "~0.1"
},

在后台中连接模块

在应用程序后端的 backend/config/components.php 中写入

'modules' => [
    'videos' => [
        'class' => 'ytubes\videos\admin\Module',
    ],
],

对于迁移

在控制台应用程序中:console/config/components.php 中写入

'controllerMap' => [
    'migrate' => [
        'class' => 'yii\console\controllers\MigrateController',
           'migrationPath' => [
                '@vendor/ytubes/videos-admin/migrations',
        ],
    ],
],

定时任务

还需要定时任务的必要工作者以确保正常工作

\ytubes\videos\admin\cron\jobs\RecalculateCTR */2 * * * *
\ytubes\videos\admin\cron\jobs\SwitchTestImage */2 * * * *
\ytubes\videos\admin\cron\jobs\ShiftCheckpoint */2 * * * *
\ytubes\videos\admin\cron\jobs\SetCategoriesThumbs */5 * * * * (раз в пять минут)