Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <?php
  2. $parser->addSubcommand('sharepoint', array(
  3. 'help' => __('Import from sharepoint csv'),
  4. 'parser' => array(
  5. 'description' => array(
  6. "Use this command to import assets from a CSV file created by sharepoint.",
  7. "The file argument is required for this command.",
  8. "The following fields are required: serial number, asset tag, model, vendor | manufacturer, bundle id | service id",
  9. ),
  10. 'arguments' => array(
  11. 'file' => array(
  12. 'help' => __('File to import'),
  13. 'required' => true,
  14. ),
  15. )
  16. )
  17. ));
  18. ?>
  19.  
  20. $ cake import sharepoint
  21. Use this command to import assets from a CSV file created by
  22. sharepoint.
  23. The file argument is required for this command.
  24. The
  25. following fields are required: serial number, asset tag, model, vendor |
  26. manufacturer, bundle id | service id
  27.  
  28. Usage:
  29. cake import sharepoint [-h] [-v] [-q] <file>
  30.  
  31. Options:
  32.  
  33. --help, -h Display this help.
  34. --verbose, -v Enable verbose output.
  35. --quiet, -q Enable quiet output.
  36.  
  37. Arguments:
  38.  
  39. file File to import
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement