This file is indexed.

/usr/share/php/irods/prods/src/packet/RP_ticketAdminInp.class.php is in php-irods-prods 3.3.0~beta1-2ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
<?php
/**
 * Developer: Daniel
 * Date: 11.01.13
 * Time: 16:45
 */

require_once(dirname(__FILE__) . "/../autoload.inc.php");

class RP_ticketAdminInp extends RODSPacket
{
    public function __construct($arg1 = 'session', // session -> to use it, create -> to... create!,
                                $arg2 = '', // the actual ticket
                                $arg3 = '', // "read" or "write" -> in case of "create" above
                                $arg4 = '', // full path to the resource, e.g.: /tempZone/home/rods/as
                                $arg5 = '',
                                $arg6 = '')
    {

        $packlets = array(  'arg1' => $arg1,
                            'arg2' => $arg2,
                            'arg3' => $arg3,
                            'arg4' => $arg4,
                            'arg5' => $arg5,
                            'arg6' => $arg6,
                        );
        parent::__construct('ticketAdminInp_PI', $packlets);
    }

}