php - 如何从另一个支持的页面表单调用该值并将其用于 OctoberCms 中的组件

标签 php laravel twig backend octobercms

我正在制作一个 seo 插件,我也在使用 rainlab 博客插件,我创建了一个带有字段的选项卡,我可以在其中输入我想要包含在页面 head 标签中的元数据,但我不这样做当我的 seo 组件位于 cms 页面时,我不知道如何从博客区域(rainlab 插件菜单选项卡)中的表单字段调用值,我尝试使用 {{this.page.variable}}' 方法,但是由于输入表单位于另一个后端页面,因此不起作用。

这就是我的plugin.php 的样子:

<?php namespace Stronganswer\Seo;
use Backend;
use Event;
use System\Classes\PluginBase;
use Cms\Classes\Page;
use Cms\Classes\Theme;
use System\Classes\PluginManager;
use System\Classes\SettingsManager;

class Plugin extends PluginBase
{

    /**
     * Returns information about this plugin.
     *
     * @return array
     */
public function pluginDetails()
{
    return [
        'name'        => 'seo',
        'description' => 'meta and og tag handler',
        'author'      => 'stronganswer',
        'icon'        => 'icon-leaf'
    ];
}

/**
 * Registers any front-end components implemented in this plugin.
 *
 * @return array
 */
public function registerComponents()
{

    return [
        'Stronganswer\Seo\Components\Seo' => 'seoHandler',
        'Stronganswer\Seo\Components\BlogPost' => 'SeoBlogPost',
        'Stronganswer\Seo\Components\StaticPage' => 'SeoStaticPage',
        'Stronganswer\Seo\Components\CmsPage' => 'SeoCmsPage',
    ];
}

public function registerSettings(){
    return [
        'settings' => [
            'label'       => 'SEO Settings',
            'description' => 'Seo Settings.',
            'icon'        => 'icon-bar-chart-o',
            'class'       => 'stronganswer\seo\Models\settings',
            'context'     => 'mysettings',
            'category'    =>  SettingsManager::CATEGORY_MYSETTINGS,
            'order'       => 1
        ]
    ];
}

/**
 * Registers any back-end permissions used by this plugin.
 *
 * @return array
 */
public function registerPermissions()
{

    return [
        'stronganswer.seo.some_permission' => [
            'tab' => 'seo',
            'label' => 'Some permission'
        ],
    ];
}

/**
 * Registers back-end navigation items for this plugin.
 *
 * @return array
 */
  /*  public function registerNavigation()
{

    return [
        'seo' => [
            'label'       => 'seo',
            'url'         => Backend::url('stronganswer/seo/controllers'),
            'icon'        => 'icon-leaf',
            'permissions' => ['stronganswer.seo.*'],
            'order'       => 500,
        ],
    ];
}*/

public function boot()
{
  Event::listen('backend.form.extendFields', function($widget)
    {
      if(PluginManager::instance()->hasPlugin('RainLab.Pages') && $widget->model instanceof \RainLab\Pages\Classes\Page)
      { //static pages fields
        $widget->addFields([
          'viewBag[seo_title]' =>[
            'label' => 'Meta Title',
            'tab'     => 'SEO',
            'type' => 'text'
          ],
          'viewBag[seo_description]' =>[
            'label' => 'Meta Description',
            'tab'     => 'SEO',
            'size'    => 'tiny',
            'type' => 'textarea'
          ],
          'viewBag[seo_keywords]' =>[
            'label' => 'Meta Keywords',
            'tab'     => 'SEO',
            'type' => 'text'
          ],
          'viewBag[robot_index]' => [
            'label'   => 'Robot Index',
            'type'    => 'dropdown',
            'tab'     => 'SEO',
            'options' => ["index"=>"index","noindex"=>"noindex"],
            'default' => 'index',
            'span'    => 'left'
          ],
          'viewBag[robot_follow]' => [
            'label'   => 'Robot Follow',
            'type'    => 'dropdown',
            'tab'     => 'SEO',
            'options' => ["follow"=>"follow","nofollow"=>"nofollow"],
            'default' => 'follow',
            'span'    => 'right'
                    ]
        ], 'primary');
      }

      if(PluginManager::instance()->hasPlugin('RainLab.Blog') && $widget->model instanceof \RainLab\Blog\Models\Post)
      {
        $widget->addFields([
          'blog_title' =>[
            'label' => 'Meta Title',
            'tab' => 'Blog Seo',
            'type' => 'text'
          ],
          'seo_description' =>[
            'label' => 'Meta Description',
            'tab'     => 'Blog Seo',
            'size'    => 'tiny',
            'type' => 'textarea'
          ],
          'seo_keywords' =>[
            'label' => 'Meta Keywords',
            'tab'     => 'Blog Seo',
            'type' => 'text'
          ],
          'robot_index' => [
            'label'   => 'Robot Index',
            'type'    => 'dropdown',
            'tab'     => 'Blog Seo',
            'options' =>  ["index"=>"index","noindex"=>"noindex"],
            'default' => 'index',
            'span'    => 'left'
          ],
          'canonical_url' => [
                        'label'   => 'Canonical URL',
                        'type'    => 'text',
                        'tab'     => 'SEO',
                        'span'    => 'left'
                    ],
          'robot_follow' => [
            'label'   => 'Robot Follow',
            'type'    => 'dropdown',
            'tab'     => 'Blog Seo',
            'options' => ["follow"=>"follow","nofollow"=>"nofollow"],
            'default' => 'follow',
            'span'    => 'right'
                    ]
        ], 'secondary');
      }

      if (!$widget->model instanceof \Cms\Classes\Page) return;
      //cms page fields
                $widget->addFields([
                  'settings[seo_title]' =>[
                    'label' => 'Meta Title',
                    'tab'     => 'SEO',
                    'type' => 'text'
                  ],
                  'settings[seo_description]' =>[
                    'label' => 'Meta Description',
                    'tab'     => 'SEO',
                    'size'    => 'tiny',
                    'type' => 'textarea'
                  ],
                  'settings[seo_keywords]' =>[
                    'label' => 'Meta Keywords',
                    'tab'     => 'SEO',
                    'type' => 'text'
                  ],
                  'settings[robot_index]' => [
                    'label'   => 'Robot Index',
                    'type'    => 'dropdown',
                    'tab'     => 'SEO',
                    'options' => ["index"=>"index","noindex"=>"noindex"],
                    'default' => 'index',
                    'span'    => 'left'
                  ],
                  'settings[robot_follow]' => [
                    'label'   => 'Robot Follow',
                    'type'    => 'dropdown',
                    'tab'     => 'SEO',
                    'options' => ["follow"=>"follow","nofollow"=>"nofollow"],
                    'default' => 'follow',
                    'span'    => 'right'
                            ]
      ],  'primary');

           });

    }

}

这是我的组件:

<?php namespace Stronganswer\Seo\Components;
use DB;
use Cms\Classes\ComponentBase;
use Stronganswer\Seo\models\Settings;
use RainLab\Pages\Classes\Router;
use RainLab\Blog\Models\Post;
use Cms\Classes\Theme;
use Cms\Classes\Page;
use Request;
use Event;

class BlogPost extends ComponentBase
{

  //singular page tags
public $page;
public $blog_title;
public $seo_title;
public $seo_description;
public $seo_keywords;
public $robot_index;
public $robot_follow;

//global tags
    public $ogTitle;
    public $ogDescription;
    public $ogSiteName;
    public $ogUrl;
    public $ogType;
    public $ogAuthor;
    public $ogImage;

//facebook tags
    public $ogFbAppId;
    public $ogFbAdmins;

//google tags
    public $ogGlTitle;
    public $ogGlDescription;
    public $ogGlImage;

//twitter tags
    public $ogTtCard;
    public $ogTtSite;
    public $ogTtTitle;
    public $ogTtDescription;
    public $ogTtAuthor;
    public $ogTtImage;

public function componentDetails()
{
    return [
        'name'        => 'Seo BlogPost component',
        'description' => 'handles seo fields into blogposts'
    ];
}

public function defineProperties()
{
    return [
        "post" => [
                "title" => "data",
                "default" => "post"
        ]
    ];
}

public function Run()
{
  $theme = Theme::getActiveTheme();
  $page = Page::load($theme,$this->page->baseFileName);
  $this->page["hasBlog"] = true;

  if($page->hasComponent("blogPost"))
  {
  //$seo = DB::table('rainlab_blog_posts')->get();

  //$blog_title = DB::table('rainlab_blog_posts')->where('slug','=','first-blog-post')->value('seo_title');

  //$this->seo_title = $this->page['blog_title'] = $this->page->getViewBag()->property('blog_title');
  //$this->seo_title = $this->page["seo_title"] = $this->page->seo_title;
  /*$blog_title = DB::table('rainlab_blog_posts')
                       ->select(DB::raw('select seo_title'))
                       ->where('slug', '=', 'first-blog-post')
                       ->get();*/

  $this->seo_description = $this->page["seo_description"] = $this->page->meta_description;
  $this->seo_keywords = $this->page["seo_keywords"] = $this->page->seo_keywords;
  $this->robot_follow = $this->page["robot_follow"] = $this->page->robot_follow;
  $this->robot_index = $this->page["robot_index"] = $this->page->robot_index;

  $settings = Settings::instance();

      if($settings->enable_og_tags)
      {
          $this->ogTitle = $settings->og_title;
          $this->ogDescription = $settings->og_description;
          $this->ogSiteName = $settings->og_sitename;
          $this->ogUrl = $settings->og_url;
          $this->ogType = $settings->og_type;
          $this->ogAuthor = $settings->og_author;
          $this->ogImage = $settings->og_img;
      }

      if($settings->enable_fb_tags)
      {
          $this->ogFbAppId = $settings->og_fb_appid;
          $this->ogFbAdmins = $settings->og_fb_admins;
      }

      if($settings->enable_ggl_tags)
      {
        $this->ogGlTitle = $settings->og_gl_title;
        $this->ogGlDescription = $settings->og_gl_description;
        $this->ogGlImage = $settings->og_gl_img;
      }

      if($settings->enable_tt_tags)
      {
         $this->ogTtCard = $settings->og_tt_card;
         $this->ogTtSite = $settings->og_tt_site;
         $this->ogTtTitle = $settings->og_tt_title;
         $this->ogTtDescription = $settings->og_tt_description;
         $this->ogTtAuthor = $settings->og_tt_author;
         $this->ogTtImage = $settings->og_tt_img;
      }

}
  else{
  $this->hasBlog = $this->page["hasBlog"] = false;
  }

}
}

注释中的代码尝试从表单获取值失败。如果我转到数据库,我可以看到我在表单中输入的值,但无法将它们调用到我的组件。

和我的default.htm:

<meta name="title" content="{{__SELF__.blog_title}}">

  <meta name="description" content="{{__SELF__.seo_description}}">

  <meta name="keywords" content="{{__SELF__.seo_keywords}}">

  <meta name="robots" content="{{__SELF__.robot_index}},{{__SELF__.robot_follow}}">

  <meta property="og:site_name" content="{{ __SELF__.ogSiteName }}" />

  <meta property="og:title" content="{{ __SELF__.ogTitle }}" />

  <meta property="og:url" content="{{ __SELF__.ogUrl }}" />

  <meta property="og:description" content="{{ __SELF__.ogDescription }}" />

  <meta property="og:type" content="{{ __SELF__.ogType }}" />

  <meta name="author" content="{{ __SELF__.ogAuthor }}" />

  <meta property="og:image" content="{{ __SELF__.ogImage }}" />

  <meta property="fb:app_id" content="{{ __SELF__.ogFbAppId  }}" />

  <meta property="fb:admins" content="{{ __SELF__.ogFbAdmins  }}" />

  <meta itemprop="name" content="{{ __SELF__.ogGlTitle  }}" />

  <meta itemprop="description" content="{{ __SELF__.ogGlDescription  }}" />

  <meta itemprop="image" content="{{ __SELF__.ogGlImage  }}" />

  <meta itemprop="image" content="{{ __SELF__.ogGlImage  }}" />

  <meta name="twitter:card" content="{{__SELF__.ogTtCard}}">

  <meta name="twitter:site" content="{{__SELF__.ogTtSite}}">

  <meta name="twitter:title" content="{{__SELF__.ogTtTitle}}">

  <meta name="twitter:description" content="{{__SELF__.ogTtDescription}}">

  <meta name="twitter:creator" content="{{__SELF__.ogTtAuthor}}">

  <meta name="twitter:image:src" content="{{__SELF__.ogTtImage}}">

我还有用于 cms 页面和 rainlab 页面插件(静态页面)的表单,我从我制作的其他组件中获取它们,我想指出它们都工作正常。

最佳答案

为了从数据库中调用值,我这样做了:

将其插入到组件 onRun 函数中:

$this->blog_seo_or_smth = DB::table('rainlab_blog_posts')->where('slug','first-blog-post')->first();

然后在default.htm上:

<meta name="title" content="{{__SELF__.blog_seo_or_smth.seo_title}}">

关于php - 如何从另一个支持的页面表单调用该值并将其用于 OctoberCms 中的组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37168596/

相关文章:

php - 如何在选项中输入姓名并发布?

PHP IntlDateFormatter 格式返回错误的日期

php - 将过滤器附加到 laravel 中集合的 sql 结果

symfony - 在自定义 twig_variable.yml 中注入(inject)全局 twig 变量

php - Doctrine 一对多自引用不起作用

php - 如何使用 jQuery 获取文本区域 ID

mysql - 更新 Laravel 上的数据库值

Laravel HTTP 测试和请求属性

php - Symfony2中用于开发和生产的不同错误模板

php - 与 Twig symfony 的动态变量连接