「Moodle for Mobiles installation」の版間の差分

提供:MoodleDocs
移動先:案内検索
(Gondamori (トーク) による ID:9197 の版を取り消し)
2行目: 2行目:


{{Moodle For Mobiles}}
{{Moodle For Mobiles}}
===Install Moodle 1.9===
===Moodle 1.9 をインストール===


The latest version of Moodle for Mobiles works with Moodle 1.9.
最新版の Moodle for Mobiles Moodle 1.9 で動作します。


====Moodle for Mobiles for Moodle 1.6 is still available====
====Moodle 1.6 用の Moodle for Mobiles も入手可能====


You can still get the old version of Moodle for Mobiles from this url http://download.moodle.org/patches16/mobile.zip This older version works with Moodle 1.6. Instructions for installation of the older version are included in the downloadable package in a file called README.txt
古いバージョンの Moodle for Mobiles は、このURL http://download.moodle.org/patches16/mobile.zip からダウンロード可能であり、Moodle 1.6 にて動作します。
インストール方法は、パッケージに添付された README.txt をご覧ください。


====Optionally install the Japanese language pack.====
====必要に応じて日本語言語パックをインストール====


You will need to check out the Japanese language pack (or download it with the new lang pack
You will need to check out the Japanese language pack (or download it with the new lang pack
download admin facility) as well - only the english language pack is now included in the main moodle distribution.
download admin facility) as well - only the english language pack is now included in the main moodle distribution.


====Optionally install the feedback module.====
====必要に応じてフィードバックモジュールをインストール====


Also if you want to use Andreas Grabs' feedback module the latest version is available from this url :
Also if you want to use Andreas Grabs' feedback module the latest version is available from this url :
21行目: 22行目:
http://download.moodle.org/plugins/mod/feedback.zip
http://download.moodle.org/plugins/mod/feedback.zip


====Moodle Settings.====
====Moodle の設定====


Set the site theme to standardwhite or standard. Or to use another theme see instructions below (4).
テーマを standardwhite standard にしてください。もしくは、(4)以下の手順を参照して別のテーマを使います。


===Download Moodle for Mobiles Code===
===Download Moodle for Mobiles Code===

2009年10月10日 (土) 15:22時点における版

作成中です - Toshiharu II 2009年10月10日 (土) 03:42 (UTC)

Moodle 1.9 をインストール

最新版の Moodle for Mobiles は Moodle 1.9 で動作します。

Moodle 1.6 用の Moodle for Mobiles も入手可能

古いバージョンの Moodle for Mobiles は、このURL http://download.moodle.org/patches16/mobile.zip からダウンロード可能であり、Moodle 1.6 にて動作します。 インストール方法は、パッケージに添付された README.txt をご覧ください。

必要に応じて日本語言語パックをインストール

You will need to check out the Japanese language pack (or download it with the new lang pack download admin facility) as well - only the english language pack is now included in the main moodle distribution.

必要に応じてフィードバックモジュールをインストール

Also if you want to use Andreas Grabs' feedback module the latest version is available from this url :

http://download.moodle.org/plugins/mod/feedback.zip

Moodle の設定

テーマを standardwhite か standard にしてください。もしくは、(4)以下の手順を参照して別のテーマを使います。

Download Moodle for Mobiles Code

Download the Moodle for Mobiles code from here : http://download.moodle.org/patches/mobile.zip

Install the contents of the package in yourmoodledirroot/mobile/

Then make some small additions to Moodle code

1. Add the following line to yourmoodledirroot/course/lib.php line 2 :

   include_once($CFG->mfm_dirroot.'/course/mfmbuttons.php');

2. Add the following line marked with a plus to the same file (yourmoodledirroot/course/lib.php) around line 1389 (immediately after the line starting 'echo make_editing_buttons'). Delete the + sign it is just used to mark what you need to add :

                         }
                         echo '  ';
                         echo make_editing_buttons($mod, $absolute, true, $mod->indent, $section->section);
    +                    echo make_mobile_enable_button($mod, $absolute, $section->section);
                     }
                     echo "</td>";
                     echo "</tr>";

3. If you are using a theme other than standard or standardwhite then you need to make a copy of customscripts/theme/standard or customscripts/theme/standardwhite and rename it to the same name as the theme you want to use.

4. In yourmoodlewwwroot/config.php replace :

   require_once("$CFG->dirroot/lib/setup.php");

with

   require_once($CFG->dirroot.'/mobile/customscripts/lib/setup.php');

5. Finally go to yourmoodleroot.com/admin/ on your mobile phone to set up the database (you will need to log in as an admin to access this page).