mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
* added markdown [enchantment=123] and [emote=456] * updated item_stats to accomodate enchantments * updated tables for community content to handle emotes and enchantments Spells: * getStatGain() now reads aura 123 as Spell Penetration * fixed error in tooltips when displaying effect ranges (e.g. 10 - 10 damage) * display the miscValue of aura 50, 102, 131 and 180 human readable Emote: * no longer displays empty quickInfo on detail page * detail page no longer pretends to be a pet Setup: * sync no longer regenerates all tables/files, when the supplied world-table affects nothing * fixed dependancy of ?_source from ?_achievment (damn plural-s) Misc: * FireFox doesn't understand <node>.innerText, use <node>.textContent instead please refresh the affected tables and files php aowow --sql=itemenchantment,item_stats php aowow --build=enchants,gems
107 lines
3.4 KiB
PHP
107 lines
3.4 KiB
PHP
<?php
|
|
|
|
if (!defined('AOWOW_REVISION'))
|
|
die('illegal access');
|
|
|
|
|
|
// menuId 101: Enchantment g_initPath()
|
|
// tabId 0: Database g_initHeader()
|
|
class EnchantmentsPage extends GenericPage
|
|
{
|
|
use ListPage;
|
|
|
|
protected $type = TYPE_ENCHANTMENT;
|
|
protected $tpl = 'enchantments';
|
|
protected $path = [0, 101];
|
|
protected $tabId = 0;
|
|
protected $mode = CACHE_TYPE_PAGE;
|
|
protected $js = ['filters.js'];
|
|
|
|
public function __construct($pageCall, $pageParam)
|
|
{
|
|
$this->filterObj = new EnchantmentListFilter();
|
|
$this->getCategoryFromUrl($pageParam);;
|
|
|
|
parent::__construct($pageCall, $pageParam);
|
|
|
|
$this->name = Util::ucFirst(Lang::game('enchantments'));
|
|
$this->subCat = $pageParam !== null ? '='.$pageParam : '';
|
|
}
|
|
|
|
protected function generateContent()
|
|
{
|
|
$tab = array(
|
|
'file' => 'enchantment',
|
|
'data' => [],
|
|
'params' => []
|
|
);
|
|
|
|
$conditions = [];
|
|
|
|
if (!User::isInGroup(U_GROUP_EMPLOYEE))
|
|
$conditions[] = [['cuFlags', CUSTOM_EXCLUDE_FOR_LISTVIEW, '&'], 0];
|
|
|
|
if ($_ = $this->filterObj->getConditions())
|
|
$conditions[] = $_;
|
|
|
|
$ench = new EnchantmentList($conditions);
|
|
|
|
$tab['data'] = $ench->getListviewData();
|
|
$this->extendGlobalData($ench->getJSGlobals());
|
|
|
|
// recreate form selection
|
|
$this->filter = array_merge($this->filterObj->getForm('form'), $this->filter);
|
|
$this->filter['query'] = isset($_GET['filter']) ? $_GET['filter'] : NULL;
|
|
$this->filter['fi'] = $this->filterObj->getForm();
|
|
|
|
$xCols = $this->filterObj->getForm('extraCols', true);
|
|
foreach (Util::$itemFilter as $fiId => $str)
|
|
if (array_column($tab['data'], $str))
|
|
$xCols[] = $fiId;
|
|
|
|
if (array_column($tab['data'], 'dmg'))
|
|
$xCols[] = 34;
|
|
|
|
if ($xCols)
|
|
$this->filter['fi']['extraCols'] = "fi_extraCols = ".Util::toJSON(array_values(array_unique($xCols))).";";
|
|
|
|
if (!empty($this->filter['fi']['extraCols']))
|
|
$tab['params']['extraCols'] = '$fi_getExtraCols(fi_extraCols, 0, 0)';
|
|
|
|
if ($ench->getMatches() > CFG_SQL_LIMIT_DEFAULT)
|
|
{
|
|
$tab['params']['note'] = sprintf(Util::$tryFilteringString, 'LANG.lvnote_enchantmentsfound', $ench->getMatches(), CFG_SQL_LIMIT_DEFAULT);
|
|
$tab['params']['_truncated'] = 1;
|
|
}
|
|
|
|
if (array_filter(array_column($tab['data'], 'spells')))
|
|
$tab['params']['visibleCols'] = '$[\'trigger\']';
|
|
|
|
if (!$ench->hasSetFields(['skillLine']))
|
|
$tab['params']['hiddenCols'] = '$[\'skill\']';
|
|
|
|
if ($this->filterObj->error)
|
|
$tab['params']['_errors'] = '$1';
|
|
|
|
$this->lvTabs[] = $tab;
|
|
}
|
|
|
|
protected function generateTitle()
|
|
{
|
|
$form = $this->filterObj->getForm('form');
|
|
if (!empty($form['ty']) && intVal($form['ty']) && $form['ty'] > 0 && $form['ty'] < 9)
|
|
array_unshift($this->title, Lang::enchantment('types', $form['ty']));
|
|
|
|
array_unshift($this->title, $this->name);
|
|
}
|
|
|
|
protected function generatePath()
|
|
{
|
|
$form = $this->filterObj->getForm('form');
|
|
if (isset($form['ty']) && !is_array($form['ty']))
|
|
$this->path[] = $form['ty'];
|
|
}
|
|
}
|
|
|
|
?>
|