소스 검색

视频URL帮助

moshaorui 4 달 전
부모
커밋
6279ade009

+ 13 - 1
app/Admin/Controllers/BaseVideoController.php

@@ -123,6 +123,7 @@ class BaseVideoController extends AdminController
     {
         return Form::make(new BaseVideo(), function (Form $form) {
             //$form->display('id');
+            $help = admin_trans_label('video_help');
             $form->text('title')->required();
             $form->select('category_id', admin_trans_field('category_name'))
                 ->options(BaseVideoCategory::selectOptions())
@@ -133,12 +134,23 @@ class BaseVideoController extends AdminController
                 ->accept(config('admin.upload.oss_image.accept'))
                 ->maxSize(config('admin.upload.oss_image.max_size'))
                 ->dir(config("admin.upload.directory.image").'/video/'.date("Ymd"));//
-            $form->url("video_url")->required();
+            $form->text("video_url")->required()
+                ->help('<a href="/help/youtube_url/index.html" target="_blank">'.$help.'</a>');;
             $form->editor('remark');
             $form->number('order')
                 ->default(0)
                 ->rules('numeric');
             $form->switch('enabled')->default(1);
+            $form->saving(function (Form $form) {
+                //替换youtube URL
+                if (strpos($form->video_url, '<iframe') !== false) {
+                    // 使用正则表达式提取 src 属性的值
+                    if (preg_match('/<iframe[^>]+src="([^"]+)"/', $form->video_url, $matches)) {
+                        $src = $matches[1];
+                        $form->video_url = $src;
+                    }
+                }
+            });
         });
     }
 

+ 11 - 1
app/Distributor/Controllers/DistVideoController.php

@@ -136,6 +136,7 @@ class DistVideoController extends AdminDistController
     {
         return Form::make(new DistVideo(), function (Form $form) {
             //$form->display('id');
+            $help = admin_trans_label('video_help');
             $form->text('title')->required();
             $form->select('category_id', admin_trans_label('category_name'))
                 ->options(DistVideoCategory::selectOptions())
@@ -146,7 +147,8 @@ class DistVideoController extends AdminDistController
                 ->accept(config('distributor.upload.oss_image.accept'))
                 ->maxSize(config('distributor.upload.oss_image.max_size'))
                 ->dir(config("distributor.upload.directory.image").'/video/'.date("Ymd"));//
-            $form->url("video_url", admin_trans_label('video_url'))->required();
+            $form->text("video_url", admin_trans_label('video_url'))->required()
+                ->help('<a href="/help/youtube_url/index.html" target="_blank">'.$help.'</a>');
             $form->editor('remark');
             //SEO
             $form->text('seo_title');
@@ -183,6 +185,14 @@ class DistVideoController extends AdminDistController
                 if ($form->seo_title == '') {
                     $form->seo_title = $form->title;
                 }
+                //替换youtube URL
+                if (strpos($form->video_url, '<iframe') !== false) {
+                    // 使用正则表达式提取 src 属性的值
+                    if (preg_match('/<iframe[^>]+src="([^"]+)"/', $form->video_url, $matches)) {
+                        $src = $matches[1];
+                        $form->video_url = $src;
+                    }
+                }
             });
         });
     }

+ 1 - 1
lang/en/global.php

@@ -163,7 +163,7 @@ return [
         'secondary_domain'    => 'Secondary Domain',
         'attribute'       => 'Attribute',
         'landing_page' => 'Landing Page',
-
+        'video_help' => 'Help'
     ],
     'options' => [
         //

+ 1 - 0
lang/zh_CN/global.php

@@ -164,6 +164,7 @@ return [
         'secondary_domain'    => '二级域名',
         'attribute'       => '属性',
         'landing_page' => '独立页',
+        'video_help'   => '帮助',
     ],
     'options' => [
         //

BIN
public/help/youtube_url/1.png


BIN
public/help/youtube_url/2.png


BIN
public/help/youtube_url/3.png


+ 57 - 0
public/help/youtube_url/index.html

@@ -0,0 +1,57 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Step-by-Step Instructions</title>
+    <style>
+        body {
+            font-family: Arial, sans-serif;
+            line-height: 1.6;
+            margin: 20px;
+            text-align: center;
+        }
+        h1 {
+            color: #333;
+        }
+        .step {
+            margin: 20px 0;
+        }
+        .step img {
+            width: 600px; /* Set all images to 600px width */
+            height: auto; /* Maintain aspect ratio */
+            border: 2px solid #ddd;
+            border-radius: 5px;
+        }
+        .step h2 {
+            margin: 10px 0;
+            color: #555;
+        }
+    </style>
+</head>
+<body>
+    <h1>Follow These Steps</h1>
+    <p>Please follow the instructions below in the correct order to complete the process.</p>
+
+    <!-- Step 1 -->
+    <div class="step">
+        <h2>Step 1</h2>
+        <img src="1.png" alt="Step 1 Image">
+        <p>Begin by completing the first task shown in the image above.</p>
+    </div>
+
+    <!-- Step 2 -->
+    <div class="step">
+        <h2>Step 2</h2>
+        <img src="2.png" alt="Step 2 Image">
+        <p>Proceed to the next task as illustrated in the second image.</p>
+    </div>
+
+    <!-- Step 3 -->
+    <div class="step">
+        <h2>Step 3</h2>
+        <img src="3.png" alt="Step 3 Image">
+        <p>Finally, complete the process by following the third step in the last image.</p>
+    </div>
+</body>
+</html>