# File mod_docs/sample.rb, line 13
  def self.doc_args
    #   NAME        LABEL       TYPE       DEFAULT
    [ [ 'string',   'string',   :string,   'hi' ],
      [ 'password', 'password', :password, nil ],
      [ 'text',     'text',     :text,     '<html>Hello world.</html>' ],
      [ 'integer',  'integer',  :integer,  0 ],
      [ 'float',    'float',    :float,    0.0 ],
      [ 'regexp',   'regexp',   :regexp,   /foo/ ],
      [ 'boolean',  'boolean',  :bool,     true ],
      [ 'select',   'select',   :select,   %w[ foo bar baz ] ],
      [ 'radio',    'radio',    :radio,    %w[ foo bar baz ] ],
      [ 'checkset', 'checkset', :checkset,
        [ [ 'foo', true  ],
          [ 'bar', false ],
          [ 'baz', false ]
        ]
      ]
    ]
  end