Actions

Themes/ja: Difference between revisions

From LimeSurvey Manual

(Created page with "=利用できるテーマの一覧= 利用できるテーマの一覧は管理ダッシュボードからアクセスできます。設定 > アドバンス > テーマ <br> <...")
(Created page with "一覧には5つのカラムがあります。 *'''プレビュー:''' テーマを使用するときどのように見えるかを表します。 *'''名前:''' テーマの...")
Line 35: Line 35:




The list is divided into 5 columns:
一覧には5つのカラムがあります。
*'''Preview of the theme:''' This shows how the theme will look like when used.
*'''プレビュー:''' テーマを使用するときどのように見えるかを表します。
*'''Theme title:''' Specifies the name of the theme.
*'''名前:''' テーマの名称です。
*'''Description of the themes:''' Users can always get more information about the theme using the URL on the description.
*'''説明:''' ユーザーは説明にあるURLからいつでもテーマに関する詳細な情報を取得することができます。
*'''Type of theme:''' Core themes are themes provided with LimeSurvey and cannot be changed while User themes are extended themes added in upload directory by users.
*'''タイプ:''' コアテーマはLimeSurveyが提供するテーマ、ユーザーテーマはユーザーがアップロードディレクトリーに追加した拡張テーマです。
*'''Extends:''' if the theme extends other themes, the name of the extended theme will be displayed here.
*'''継承:''' テーマが他のテーマを拡張したものである場合、元になったテーマがここに表示されます。
*'''Last Column with some action buttons:''' The last Column contains five buttons as shown on the image.
*'''アクションボタンのある最後のカラム:''' 最後のカラムには以下の図にある5つのボタンがあります。
The buttons are ways in which a theme can be edited and each button will be explained in details below,
ボタンはテーマを編集する方法であり、以下で詳細に説明します。


**'''Theme editor:''' it will redirect you to the theme editor
**'''Theme editor:''' it will redirect you to the theme editor

Revision as of 09:52, 19 March 2022

LimeSurvey 3では、 Twig 1.29Bootstrapをベースにテンプレートの継承とテンプレートオプションが可能なまったく新しいテンプレートエンジンシステムを導入しています。フロントエンドのHTMLページは、ニーズに合わせて100%カスタマイズできます。


Limesurvey 3.0+をインストールすると、アンケートのテーマオプション機能を利用することができます。このオプションは、古いLimeSurveyバージョンでは利用できません


  以下のセクションは作成中です。LimeSurvey 3.xから導入された新しいテーマシステムに関する簡単な説明は、こちらのwikiセクションを参照してください。LimeSurvey 2.xを使用している場合は、こちらのwikiセクションを参照してください(常にアップグレードをお勧めします)。


はじめに

LimeSurvey 3.xでは、テーマオプションが利用でき、アンケート管理者が素早く簡単にアンケートのテーマに関連する設定を変更できる様々なツール一式が利用できます。

テーマを変更する設定

LimeSurvey 3.xでテーマを使用するには、全般設定またはアンケート内のテーマ設定パネルの2つの方法があります。

テーマを全般設定から変更すると、選択したテーマは、作成するすべてのアンケートの既定のテーマになります。 アンケート内の テーマ設定パネルを使用して特定のアンケートのテーマを変更した場合、そのアンケートのテーマのみが変更されます。

全般設定の既定のテーマ

テーマ設定パネル

このオプションは、特定のアンケートのテーマを変更します。 新しいテーマ設定機能にアクセスするには、アンケート設定に移動します。

利用できるテーマの一覧

利用できるテーマの一覧は管理ダッシュボードからアクセスできます。設定 > アドバンス > テーマ


一覧には5つのカラムがあります。

  • プレビュー: テーマを使用するときどのように見えるかを表します。
  • 名前: テーマの名称です。
  • 説明: ユーザーは説明にあるURLからいつでもテーマに関する詳細な情報を取得することができます。
  • タイプ: コアテーマはLimeSurveyが提供するテーマ、ユーザーテーマはユーザーがアップロードディレクトリーに追加した拡張テーマです。
  • 継承: テーマが他のテーマを拡張したものである場合、元になったテーマがここに表示されます。
  • アクションボタンのある最後のカラム: 最後のカラムには以下の図にある5つのボタンがあります。

ボタンはテーマを編集する方法であり、以下で詳細に説明します。

    • Theme editor: it will redirect you to the theme editor
    • Theme options: it will lead you the global configuration of theme options
    • Uninstall: it will delete the configuration entries of a theme in the database
    • Install: it will load the manifest of a theme to add it to database and make it available for selection at the survey level
    • Reset: This will completely reset the theme.


Theme editor

The LimeSurvey core themes (default themes) cannot be modified. The "extend" button give users the opportunity for a core theme to be modified(extended).

This documentation assumes you already know how to use the Template Editor in the previous version of LS.

The fruity theme is used for this demonstration on how to extend/modify a theme using the theme editor.

When the theme editor button is clicked, the page below is displayed. The theme can be previewed using the "Previous" and "Next" buttons. The screen size can be adjusted to see how responsive the theme is on all devices. A new template can be imported or the current template can be exported as a zip file.




The "Extend" button will ask for a new name to save a copy of the theme you want to modify. 
In our case, the fruity theme will be named "extends_fruity".


Theme inheritance overview

When a theme is extended, a copy of the original theme can easily be modified. In our case, we have a copy of the fruity theme saved as "extends_fruity" which will be available for use in the list of themes available.

Modifying the theme is for advance users with basic knowledge of HTML, CSS and Twig.