aboutsummaryrefslogtreecommitdiff
path: root/srcs/phpmyadmin/js/designer/objects.js
blob: 6bb40372f4e3edcb04690d1fed53ee73ec75c7db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// eslint-disable-next-line no-unused-vars
var DesignerObjects = {
    PdfPage: function (dbName, pageDescr, tblCords) {
        // eslint-disable-next-line no-unused-vars
        var pgNr;
        this.dbName = dbName;
        this.pageDescr = pageDescr;
        this.tblCords = tblCords;
    },
    TableCoordinate: function (dbName, tableName, pdfPgNr, x, y) {
        this.dbName = dbName;
        this.tableName = tableName;
        this.pdfPgNr = pdfPgNr;
        this.x = x;
        this.y = y;
    }
};