function video_install in Video 7
Same name and namespace in other branches
- 5 video.install \video_install()
- 6.5 video.install \video_install()
- 6 video.install \video_install()
- 6.2 video.install \video_install()
- 6.3 video.install \video_install()
- 6.4 video.install \video_install()
- 7.2 video.install \video_install()
Implementation of hook_install().
File
- ./
video.install, line 187 - Provides installation schema for video.module @author Heshan Wanigasooriya <heshan@heidisoft.com>
Code
function video_install() {
// Create the videos directory and ensure it's writable.
$directory = file_default_scheme() . '://videos';
file_prepare_directory($directory, FILE_CREATE_DIRECTORY | FILE_MODIFY_PERMISSIONS);
}