Class: Lumberg::Cpanel::Branding

Inherits:
Base show all
Defined in:
lib/lumberg/cpanel/branding.rb

Instance Attribute Summary

Attributes inherited from Base

#api_username

Attributes inherited from Whm::Base

#server

Instance Method Summary collapse

Methods inherited from Base

api_module, #initialize, #perform_request

Methods inherited from Whm::Base

#initialize, #setup_server

Constructor Details

This class inherits a constructor from Lumberg::Cpanel::Base

Instance Method Details

#list_icons(options = {}) ⇒ Object

Public: Retrieve a list of icons within the x3 interface.

options - Hash options for API call params (default: {}):

:nvarglist - String parameter allows you to specify the order in
             which you wish to have groups returned, separated by
             pipes, e.g., "mail|files|domains|logs". This is the
             last filter on the data and is stored in your
             xmaingroupsorder NVDATA variable (optional).

Returns Hash API response.



60
61
62
63
64
# File 'lib/lumberg/cpanel/branding.rb', line 60

def list_icons(options = {})
  perform_request({
    api_function: "applist"
  }.merge(options))
end

#list_image_types(options = {}) ⇒ Object

Public: Get list of branding image types.

options - Hash options for API call params (default: {}):

Returns Hash API response.



82
83
84
85
86
# File 'lib/lumberg/cpanel/branding.rb', line 82

def list_image_types(options = {})
  perform_request({
    api_function: "listimgtypes"
  }.merge(options))
end

#list_object_types(options = {}) ⇒ Object

Public: Get list of branding object types.

options - Hash options for API call params (default: {}):

Returns Hash API response.



71
72
73
74
75
# File 'lib/lumberg/cpanel/branding.rb', line 71

def list_object_types(options = {})
  perform_request({
    api_function: "listobjecttypes"
  }.merge(options))
end

#list_pkgs(options = {}) ⇒ Object

Public: Get list of branding packages.

options - Hash options for API call params (default: {}):

:onlyshowyours - Return only packages that the user owns?
                 String "1" or "0" (optional).
:showroot      - Only return system branding packages?
                 String "1" or "0" (optional).
:skipglobal    - Only return customized branding packages?
                 String "1" or "0" (optional).
:skiphidden    - Skip branding packages owned by the user?
                 String "1" or "0" (optional).

Returns Hash API response.



17
18
19
20
21
# File 'lib/lumberg/cpanel/branding.rb', line 17

def list_pkgs(options = {})
  perform_request({
    api_function: "showpkgs"
  }.merge(options))
end

#list_sprites(options = {}) ⇒ Object

Public: Get URL locations for specific sprites.

options - Hash options for API call params (default: {}):

:img        - String branding object label for the image you want to
              retrieve.
:imgtype    - String branding image type you want to retrieve, e.g.,
              "icon" or "heading".
:method     - String specification for returned value options.
              Acceptable values are: "only_filetype_gif",
              "skip_filetype_gif", "snap_to_smallest_width", and
              "scale_60percent".
:subtype    - String branding image subtype, e.g., "img", "bg",
              "compleximg".
:image      - String parameter allows you to force appropriate
              output by setting it to "heading" (optional).
:skipgroups - String parameter allows you to specify whether or not
              to include "img" values that begin with "group_" in
              the output. "1" indicates that you wish to skip "img"
              values that begin with "group_" (optional).

Returns Hash API response.



44
45
46
47
48
# File 'lib/lumberg/cpanel/branding.rb', line 44

def list_sprites(options = {})
  perform_request({
    api_function: "spritelist"
  }.merge(options))
end