diff options
author | prashant | 2015-02-02 14:30:21 +0530 |
---|---|---|
committer | prashant | 2015-02-02 14:30:21 +0530 |
commit | 421e6a718f78bcaef494a9f34ff319f6df2bce84 (patch) | |
tree | 73e29f6ca65a132014bc8fdcc60a189738cb6976 | |
parent | 27f39e80b66881dce2c66c30426efc83dae63ac1 (diff) | |
download | scilab_textbook_companion-421e6a718f78bcaef494a9f34ff319f6df2bce84.tar.gz scilab_textbook_companion-421e6a718f78bcaef494a9f34ff319f6df2bce84.tar.bz2 scilab_textbook_companion-421e6a718f78bcaef494a9f34ff319f6df2bce84.zip |
enabled search by student function
-rwxr-xr-x | textbook_companion.module | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/textbook_companion.module b/textbook_companion.module index 25777b2..25c67c6 100755 --- a/textbook_companion.module +++ b/textbook_companion.module @@ -312,15 +312,15 @@ function textbook_companion_menu() 'file' => 'search.inc', 'weight' => 4, ); - // $items['textbook_search/student'] = array( - // 'title' => 'By Student', - // 'description' => '', - // 'page callback' => 'textbook_companion_browse_student', - // 'access arguments' => array('access content'), - // 'type' => MENU_LOCAL_TASK, - // 'file' => 'search.inc', - // 'weight' => 5, - // ); + $items['textbook_search/student'] = array( + 'title' => 'By Student', + 'description' => '', + 'page callback' => 'textbook_companion_browse_student', + 'access arguments' => array('access content'), + 'type' => MENU_LOCAL_TASK, + 'file' => 'search.inc', + 'weight' => 5, + ); $items['textbook_run'] = array( 'title' => 'Download Codes', |