Provides content_copy services. Requires services.module and content_copy.module.
'); case 'admin/modules#description': return t('Provides content_copy services. Requires services.module and content_copy.module.'); } } /** * Implementation of hook_service() */ function content_copy_service_service() { return array( // content_copy.import array( '#method' => 'content_copy.import', '#callback' => 'content_copy_service_import', '#args' => array( array( '#name' => 'type_name', '#type' => 'string', '#description' => t('Content type name to import fields into (or "create" to create new).')), array( '#name' => 'export', '#type' => 'text', '#description' => t('Text of a content copy export'))), '#return' => 'string', '#help' => t('Import a content type macro')), // content_copy.export array( '#method' => 'content_copy.export', '#callback' => 'content_copy_service_export', '#args' => array( array( '#name' => 'type_name', '#type' => 'string', '#description' => t('The content type to export'))), '#return' => 'string', '#help' => t('Export a content type macro')), ); } /** * Content copy import service callback */ function content_copy_service_import($type_name, $export) { if ($type_name == 'create') { $type_name = '