Handles Ajax requests for copyright.
More...
|
| Output () |
| Display the loaded menu and plugins. More...
|
|
| Install () |
| This function (when defined) is only called when the plugin is first installed. It should make sure all requirements are available and create anything it needs to run. It returns 0 on success, non-zero on failure. A failed install is not inserted in the system. More...
|
|
| Remove () |
| This function (when defined) is only called once, when the plugin is removed. It should uninstall and remove all items that are only used by this plugin. There should be no residues – if the plugin is ever installed again, it should act like a clean install. Thus, any DB, files, or state variables specific to this plugin must be removed. This function must always succeed.
|
|
| __construct () |
| base constructor. Most plugins will just use this More...
|
|
| Initialize () |
| dummy stub till all references are removed.
|
|
| PostInitialize () |
| This function is called before the plugin is used and after all plugins have been initialized. If there is any initialization step that is dependent on other plugins, put it here. More...
|
|
| RegisterMenus () |
| While menus can be added to any time at or after the PostInitialize phase, this is the standard location for registering this item with menus. More...
|
|
| Destroy () |
| This is a destructor called after the plugin is no longer needed. It should assume that PostInitialize() was already run one time (this session) and succeeded. This function must always succeed.
|
|
| OutputOpen () |
| This function is called when user output is requested. This function is responsible for assigning headers.
|
|
| OutputUnSet () |
| Similar to OutputClose, this ends the output type for this object. However, this does NOT change any global settings. This is called when this object is a dependency for another object.
|
|
| getResponse () |
|
| Output () |
| This function is called when user output is requested. This function is responsible for content. (OutputOpen and Output are separated so one plugin can call another plugin's Output.)
|
|
| getTemplateName () |
|
| renderString ($templateName, $vars=null) |
|
| renderScripts ($scripts) |
| Render JavaScript in the template's footer. More...
|
|
| getRequest () |
|
| execute () |
|
| preInstall () |
|
| postInstall () |
|
| unInstall () |
|
| getName () |
|
| __toString () |
|
|
| doGetData ($upload, $activated=true) |
| Handles GET request and create a JSON response. More...
|
|
| getCopyrights ($upload_pk, $item, $uploadTreeTableName, $agentId, $type, $filter, $activated=true) |
| Get results from database and format for JSON. More...
|
|
| doUpdate ($itemId, $hash, $type) |
| Update result. More...
|
|
| doDelete ($itemId, $hash, $type) |
| Disable a result. More...
|
|
| doUndo ($itemId, $hash, $type) |
| Rollback a result. More...
|
|
| doDeleteDecision ($decisionId, $pfileId, $type) |
| Disable a decision. More...
|
|
| doUndoDecision ($decisionId, $pfileId, $type) |
| Rollback a decision. More...
|
|
| doDeleteHashDecision ($hash, $upload, $type) |
| Disable decisions for an upload which matches a hash. More...
|
|
| doUndoHashDecision ($hash, $upload, $type) |
| Rollback decisions for an upload which matches a hash. More...
|
|
| render ($templateName, $vars=null) |
|
|
| $listPage |
|
| $microMenu |
|
| $renderer |
|
| $vars = array() |
|
|
| getTableData ($upload, $item, $agent_pk, $type, $listPage, $filter, $activated=true) |
| Get the copyright data and fill in expected format. More...
|
|
| getTableName ($type) |
| Get table name based on statement type. More...
|
|
| getOrderString () |
| Create sorting string for database query. More...
|
|
| addSearchFilter (&$filterParams) |
| Add filter on content. More...
|
|
| getTableRowAction ($hash, $uploadTreeId, $upload, $type, $activated=true, $rw=true) |
| Helper to create action column for results. More...
|
|
| fillTableRow ($row, $uploadTreeId, $upload, $agentId, $type, $listPage, $filter="", $activated=true, $rw=true) |
| Fill table content for JSON response. More...
|
|
|
| $uploadtree_tablename |
|
| $dbManager |
|
| $uploadDao |
|
| $copyrightDao |
|
| $dataTablesUtility |
|
| $textFindingTypes = ["copyFindings"] |
|
Handles Ajax requests for copyright.
Definition at line 35 of file ajax-copyright-hist.php.
CopyrightHistogramProcessPost::addSearchFilter |
( |
& |
$filterParams | ) |
|
|
private |
Add filter on content.
- Parameters
-
[out] | array | $filterParams | Parameters list for database query |
- Returns
- string Filter string for query
Definition at line 366 of file ajax-copyright-hist.php.
CopyrightHistogramProcessPost::doDelete |
( |
|
$itemId, |
|
|
|
$hash, |
|
|
|
$type |
|
) |
| |
|
protected |
Disable a result.
- Parameters
-
int | $itemId | Upload tree id of the item to update |
string | $hash | Hash of the content |
string | $type | 'copyright'|'ecc' |
- Returns
- Response
Definition at line 478 of file ajax-copyright-hist.php.
CopyrightHistogramProcessPost::doDeleteDecision |
( |
|
$decisionId, |
|
|
|
$pfileId, |
|
|
|
$type |
|
) |
| |
|
protected |
Disable a decision.
- Parameters
-
int | $decisionId | Decision id |
string | $pfileId | Pfile id of the item |
string | $type | 'copyright'|'ecc' |
- Returns
- JsonResponse
Definition at line 507 of file ajax-copyright-hist.php.
CopyrightHistogramProcessPost::doDeleteHashDecision |
( |
|
$hash, |
|
|
|
$upload, |
|
|
|
$type |
|
) |
| |
|
protected |
Disable decisions for an upload which matches a hash.
- Parameters
-
string | $hash | Hash of the decision |
int | $upload | Upload id |
string | $type | 'copyright'|'ecc' |
- Returns
- JsonResponse
Definition at line 531 of file ajax-copyright-hist.php.
CopyrightHistogramProcessPost::doGetData |
( |
|
$upload, |
|
|
|
$activated = true |
|
) |
| |
|
protected |
Handles GET request and create a JSON response.
Gets the copyright history for given upload and generate a JSONResponse using getTableData()
- Parameters
-
int | $upload | Upload id to fetch results |
bool | $activated | True to get activated results, false for disabled |
- Returns
- JsonResponse JSON response for JavaScript
Definition at line 184 of file ajax-copyright-hist.php.
CopyrightHistogramProcessPost::doUndo |
( |
|
$itemId, |
|
|
|
$hash, |
|
|
|
$type |
|
) |
| |
|
protected |
Rollback a result.
- Parameters
-
int | $itemId | Upload tree id of the item to update |
string | $hash | Hash of the content |
string | $type | 'copyright'|'ecc' |
- Returns
- Response
Definition at line 493 of file ajax-copyright-hist.php.
CopyrightHistogramProcessPost::doUndoDecision |
( |
|
$decisionId, |
|
|
|
$pfileId, |
|
|
|
$type |
|
) |
| |
|
protected |
Rollback a decision.
- Parameters
-
int | $decisionId | Decision id |
string | $pfileId | Pfile id of the item |
string | $type | 'copyright'|'ecc' |
- Returns
- JsonResponse
Definition at line 519 of file ajax-copyright-hist.php.
CopyrightHistogramProcessPost::doUndoHashDecision |
( |
|
$hash, |
|
|
|
$upload, |
|
|
|
$type |
|
) |
| |
|
protected |
Rollback decisions for an upload which matches a hash.
- Parameters
-
string | $hash | Hash of the decision |
int | $upload | Upload id |
string | $type | 'copyright'|'ecc' |
- Returns
- JsonResponse
Definition at line 550 of file ajax-copyright-hist.php.
CopyrightHistogramProcessPost::doUpdate |
( |
|
$itemId, |
|
|
|
$hash, |
|
|
|
$type |
|
) |
| |
|
protected |
Update result.
- Parameters
-
int | $itemId | Upload tree id of the item to update |
string | $hash | Hash of the content |
string | $type | 'copyright'|'ecc'|'keyword' |
- Returns
- Response
Definition at line 456 of file ajax-copyright-hist.php.
CopyrightHistogramProcessPost::fillTableRow |
( |
|
$row, |
|
|
|
$uploadTreeId, |
|
|
|
$upload, |
|
|
|
$agentId, |
|
|
|
$type, |
|
|
|
$listPage, |
|
|
|
$filter = "" , |
|
|
|
$activated = true , |
|
|
|
$rw = true |
|
) |
| |
|
private |
Fill table content for JSON response.
- Parameters
-
array | $row | Result row from database |
int | $uploadTreeId | Upload tree id of the item |
int | $upload | Upload id |
int | $agentId | Agent id |
string | $type | Type of content |
string | $listPage | Page slug |
string | $filter | Filter for query |
boolean | $activated | True to get activated results, false otherwise |
- Returns
- string[]
Definition at line 423 of file ajax-copyright-hist.php.
CopyrightHistogramProcessPost::getCopyrights |
( |
|
$upload_pk, |
|
|
|
$item, |
|
|
|
$uploadTreeTableName, |
|
|
|
$agentId, |
|
|
|
$type, |
|
|
|
$filter, |
|
|
|
$activated = true |
|
) |
| |
|
protected |
Get results from database and format for JSON.
- Parameters
-
int | $upload_pk | Upload id to get results from |
int | $item | Upload tree id of the item |
string | $uploadTreeTableName | Upload tree table to use |
int | $agentId | Id of the agent who loaded the results |
string | $type | Type of the statement (statement, url, email, author or ecc) |
string | $filter | Filter data from query |
boolean | $activated | True to get activated copyrights, else false |
- Returns
- array[][] Array of table records, filtered records, total records
Definition at line 242 of file ajax-copyright-hist.php.
CopyrightHistogramProcessPost::getOrderString |
( |
| ) |
|
|
private |
CopyrightHistogramProcessPost::getTableData |
( |
|
$upload, |
|
|
|
$item, |
|
|
|
$agent_pk, |
|
|
|
$type, |
|
|
|
$listPage, |
|
|
|
$filter, |
|
|
|
$activated = true |
|
) |
| |
|
private |
Get the copyright data and fill in expected format.
- Parameters
-
int | $upload | Upload id to get results from |
int | $item | Upload tree id of the item |
int | $agent_pk | Id of the agent who loaded the results |
string | $type | Type of the statement (statement, url, email, author or ecc) |
string | $listPage | Page slug to use |
string | $filter | Filter data from query |
boolean | $activated | True to get activated copyrights, else false |
- Returns
- array[][] Array of table data, total records in database, filtered records
Definition at line 214 of file ajax-copyright-hist.php.
CopyrightHistogramProcessPost::getTableName |
( |
|
$type | ) |
|
|
private |
Get table name based on statement type.
- statement => copyright
- ecc => ecc
- others => author
- Parameters
-
- Returns
- string Table name
Definition at line 327 of file ajax-copyright-hist.php.
CopyrightHistogramProcessPost::getTableRowAction |
( |
|
$hash, |
|
|
|
$uploadTreeId, |
|
|
|
$upload, |
|
|
|
$type, |
|
|
|
$activated = true , |
|
|
|
$rw = true |
|
) |
| |
|
private |
Helper to create action column for results.
- Parameters
-
string | $hash | Hash of the content |
int | $uploadTreeId | Item id in upload tree table |
int | $upload | Upload id |
string | $type | Type of content |
boolean | $activated | True if content is activated, else false |
boolean | $rw | true if content is editable |
- Returns
- string
Definition at line 387 of file ajax-copyright-hist.php.
CopyrightHistogramProcessPost::Output |
( |
| ) |
|
string CopyrightHistogramProcessPost::$listPage |
|
protected |
array CopyrightHistogramProcessPost::$textFindingTypes = ["copyFindings"] |
|
private |
The documentation for this class was generated from the following file: