1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- function cck_phone_field_schema($field) {
- return array(
- 'columns' => array(
- 'number' => array(
- 'type' => 'varchar',
- 'length' => 15,
- 'not null' => FALSE,
- ),
- 'country_codes' => array(
- 'type' => 'varchar',
- 'length' => 2,
- 'not null' => FALSE,
- ),
- 'extension' => array(
- 'type' => 'varchar',
- 'length' => 6,
- 'not null' => FALSE,
- ),
- ),
- );
- }
- function cck_phone_install() {
- drupal_set_message(st('Phone number module installed successfully.'));
- }
- function cck_phone_uninstall() {
- }
- function cck_phone_enable() {
-
- }
- function cck_phone_disable() {
- }
|