Moodle Programing[edit]

Document[edit]

Development[edit]

構成[edit]

Version[edit]

Context[edit]

module[edit]
block[edit]

POST, GET[edit]

権限用[edit]

function require_login[edit]
require_login($courseorid=NULL, $autologinguest=true, $cm=NULL, $setwantsurltome=true, $preventredirect=false)

DB[edit]

データベース作成[edit]

大域変数, オブジェクト[edit]

$CFG[edit]
$PAGE[edit]
$USER[edit]
$OUTPUT[edit]
$_POST[edit]
block_base[edit]

HTML出力[edit]

$OUTPUT[edit]
ひたすら HTML を書く.[edit]
new flexible_table('...') を使う.[edit]
new html_table() と html_writer::table() を使用する.[edit]

URL[edit]

class moodle_url[edit]
$base_url = new moodle_url('/mod/apply/'.$action_file);
$base_url->params(array('id'=>$id, 'courseid'=>$courseid));

Form[edit]

Submit[edit]
$SESSION を使う[edit]

File Storage Class[edit]

メッセージ[edit]

settings.php[edit]

メッセージの送信[edit]

messsage_send()[edit]
   $eventdata = new stdClass();
   $eventdata->name              = 'processed';
   $eventdata->component         = 'mod_apply';
   $eventdata->userfrom          = $fuser;    // id またはオブジェクト
   $eventdata->userto            = $user;     // id またはオブジェクト
   $eventdata->subject           = $postsubject;
   $eventdata->fullmessage       = $posttext;
   $eventdata->fullmessageformat = FORMAT_PLAIN;
   $eventdata->fullmessagehtml   = $posthtml;
   $eventdata->smallmessage      = '';
   $eventdata->notification      = 1;
   //
   message_send($eventdata);
$messageproviders = array (
/// Submitting a apply
   'submission' => array (
   ),

   'processed' => array (
   )
);

Capability[edit]

  1. Capability が正常に反映されない場合は,一旦 db/access.php の設定部分をコメントアウトして,更新する(version を上げる)
  2. その後コメントを外して,更新する(version を上げる)
has_capability[edit]
Array ( [0] => 160 [1] => 1537 )
</pre> 
*** ログ [#q8c98d5f]
- %%lib/moodlelib.php%%
- %%function add_to_log($courseid, $module, $action, $url='', $info='', $cm=0, $user=0)%% 

- 2.6 から add_to_log() は deprecated
- event log を使う
- see [[event log>./event log]]


**** Table of LOG Data [#h7179fc9]
- http://docs.moodle.org/dev/Migrating_log_access_in_reports
- mdl_logstore_standard_log
MariaDB [moodle_db]> show columns from mdl_logstore_standard_log;
+-------------------+--------------+------+-----+---------+----------------+
| Field             | Type         | Null | Key | Default | Extra          |
+-------------------+--------------+------+-----+---------+----------------+
| id                | bigint(10)   | NO   | PRI | NULL    | auto_increment |
| eventname         | varchar(255) | NO   |     |         |                |
| component         | varchar(100) | NO   |     |         |                |
| action            | varchar(100) | NO   |     |         |                |
| target            | varchar(100) | NO   |     |         |                |
| objecttable       | varchar(50)  | YES  |     | NULL    |                |
| objectid          | bigint(10)   | YES  |     | NULL    |                |
| crud              | varchar(1)   | NO   |     |         |                |
| edulevel          | tinyint(1)   | NO   |     | NULL    |                |
| contextid         | bigint(10)   | NO   |     | NULL    |                |
| contextlevel      | bigint(10)   | NO   |     | NULL    |                |
| contextinstanceid | bigint(10)   | NO   |     | NULL    |                |
| userid            | bigint(10)   | NO   | MUL | NULL    |                |
| courseid          | bigint(10)   | YES  | MUL | NULL    |                |
| relateduserid     | bigint(10)   | YES  |     | NULL    |                |
| anonymous         | tinyint(1)   | NO   |     | 0       |                |
| other             | longtext     | YES  |     | NULL    |                |
| timecreated       | bigint(10)   | NO   | MUL | NULL    |                |
| origin            | varchar(10)  | YES  |     | NULL    |                |
| ip                | varchar(45)  | YES  |     | NULL    |                |
| realuserid        | bigint(10)   | YES  |     | NULL    |                |
+-------------------+--------------+------+-----+---------+----------------+
21 rows in set (0.00 sec)





** Files [#m4e06bae]
*** Block [#x3645934]
- version.php
- block_XXX.php
- lib.php (Option)
- settings.php (Option)

** Tips
*** SITEID [#bb71472e]
- Network機能を使用するときに使用する識別ID.Local の場合は 1

** External Service [#t7bddd11]
*** WebService [#k3d3d384]
- db/services.php
-- db/access.php
- externallib.php
-- classes/...._webservice_handler.php



** List [#w6e8f55e]
#ls2
#br

トップ   新規 ページ一覧 検索 最終更新   ヘルプ   最終更新のRSS