Reputation: 55
i am new to revive adserver and i need to add an extra field at 'Add new advertiser' section.please help me to achieve this...
Upvotes: 0
Views: 849
Reputation: 13
You have to add fields in the
advertiser-edit.php in \www\admin
folder. Later to store in the database , you need to add attributes in db_schema.ini file in \lib\max\Dal\DataObjects
folder.
This is also applicable to rest of the edit pages.
Upvotes: 0
Reputation: 128
You can just change advertiser-edit.php file in www/admin folder. So, you can add any type of data and make insert and get from database. Also, you need to change language files
default.lang.php
add fields like below :
$GLOBALS['strAddress'] = "Address";
Upvotes: 0