mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
36e2d02d6e
Summary: `pht`ize a whole bunch of strings in rP. Test Plan: Intense eyeballing. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: hach-que, Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12797
26 lines
560 B
PHP
26 lines
560 B
PHP
<?php
|
|
|
|
$table = new PhabricatorFileImageMacro();
|
|
foreach (new LiskMigrationIterator($table) as $macro) {
|
|
$name = $macro->getName();
|
|
|
|
echo pht("Linking macro '%s'...", $name)."\n";
|
|
|
|
$editor = new PhabricatorEdgeEditor();
|
|
|
|
$phids[] = $macro->getFilePHID();
|
|
$phids[] = $macro->getAudioPHID();
|
|
$phids = array_filter($phids);
|
|
|
|
if ($phids) {
|
|
foreach ($phids as $phid) {
|
|
$editor->addEdge(
|
|
$macro->getPHID(),
|
|
PhabricatorObjectHasFileEdgeType::EDGECONST,
|
|
$phid);
|
|
}
|
|
$editor->save();
|
|
}
|
|
}
|
|
|
|
echo pht('Done.')."\n";
|