File: README

package info (click to toggle)
cups 1.4.4-7%2Bsqueeze10
  • links: PTS, VCS
  • area: main
  • in suites: squeeze-lts
  • size: 25,548 kB
  • ctags: 9,583
  • sloc: ansic: 138,214; sh: 37,926; cpp: 25,469; makefile: 3,285; perl: 190; python: 127; php: 28
file content (157 lines) | stat: -rw-r--r-- 3,825 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
README - 02/25/2006
-------------------

INTRODUCTION

    This directory contains a dynamically loadable CUPS extension
    module for PHP 4 and 5.  The CUPS 1.2 module has been
    substantially updated to provide an API more consistent with
    the C API and is NOT compatible with the CUPS 1.1 module.


COMPILING AND INSTALLING

    Run "make" to compile the PHP CUPS extension:

	make

    To install it, type:

	make install


RESOURCES AND SUPPORT

    Questions should be reported to the CUPS newsgroups/mailing
    lists at:

	http://www.cups.org/newsgroups.php

    Bug reports and enhancement requests can be submitted via the
    form at:

	http://www.cups.org/str.php


QUICK REFERENCE DOCUMENTATION

    In lieu of actual documentation, the following definitions
    can be used as a quick reference to the supported functions:


    CUPS_CANCEL_JOB

    Cancels a job on the named destination:

        bool cups_cancel_job(string dest, int id)

    The return value is TRUE on success and FALSE on failure.

    Example:

        if (!cups_cancel_job("myprinter", 123))
	  print("Unable to cancel job: " . cups_last_error_string() . "\n");


    CUPS_GET_DESTS

    Gets a list of available destinations:

        array cups_get_dests()

    The return value is an array of objects with the following
    properties:

        name        The name of the printer or class
	instance    The instance of the printer or class
	is_default  TRUE if the printer or class is the default destination
	options     Associative array of options and their values

    Example:

        $dest = cups_get_dests();


    CUPS_GET_JOBS

    Gets a list of jobs:

        array cups_get_jobs(string dest, bool myjobs, int completed)

    The "dest" string can be blank for jobs on all destinations.
    Pass TRUE for "myjobs" to only get jobs for the current user.
    The "completed" argument can be 0 for pending jobs, 1 for
    completed jobs, and -1 for all jobs.

    The return value is an array of objects with the following
    properties:

        id                The job ID
        dest              Printer or class name
        title             Title/job name
        user              User the submitted the job
        format            Document format
        state             Job state
        size              Size in kilobytes
        priority          Priority (1-100)
        completed_time    Time the job was completed
        creation_time     Time the job was created
        processing_time   Time the job was processed

    Example:

        $jobs = cups_get_jobs("", FALSE, -1);


    CUPS_LAST_ERROR
    
    Returns the IPP status code for the most recent request:

        int cups_last_error()

    Example:

        $error = cups_last_error();


    CUPS_LAST_ERROR_STRING
    
    Returns the IPP status-message string for the most recent request:

        string cups_last_error_string()

    Example:

        $message = cups_last_error_string();


    CUPS_PRINT_FILE

    Prints a single file to a printer or class:

        int cups_print_file(string dest, string filename, string title,
	                    array options)

    The return value is the job ID or 0 if there was an error.

    Example:

        $options = array("name" => "value", "name2" => "value2");
	$id      = cups_print_file("dest", "filename", "title", $options);


    CUPS_PRINT_FILES

    Prints one or more files to a printer or class:

        int cups_print_files(string dest, array files, string title,
	                     array options);

    The return value is the job ID or 0 if there was an error.

    Example:

        $files   = array("file1", "file2", "file3");
        $options = array("name" => "value", "name2" => "value2");
	$id      = cups_print_file("dest", $files, "title", $options);