Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Community Addon -> YCom #25

Merged
merged 4 commits into from
Nov 6, 2017
Merged

Community Addon -> YCom #25

merged 4 commits into from
Nov 6, 2017

Conversation

TobiasKrais
Copy link
Contributor

YCom Anpassungen

YCom Anpassungen
'replaces' => [
['checkperm' => 'checkPerm'],
['community' => 'ycom'],
['rex_com_auth' => 'rex_ycom_auth'],
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Danke für den PR. Wenn das Methoden oder Funktionen sind, wäre es gut das die Regex genauer wäre. Ansonsten passiert es, dass community auch im Fließtext mit ycom ersetzt wird.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • checkperm ist eine Methode.
  • community lediglich der Addon Name. Die Ersetzung finde ich auch potentiell riskant.
  • rex_com_auth ist der Klassenname.

@TobiasKrais
Copy link
Contributor Author

Noch zu der Ersetzung von 'community'. Hier ein Beispiel der alten Verwendung:
OOAddon::isAvailable('community'). Das sollte zu rex_addon::get('ycom')->isAvailable() werden. Hast du eine gute Idee, wie man das absichern kann?

@tbaddade
Copy link
Member

tbaddade commented Nov 6, 2017

Hast du eine gute Idee, wie man das absichern kann?

Da wird es bereits spezieller. Ersetzt wird das bereits an dieser Stelle, aber eben noch mit dem alten Namen.
https://github.com/yakamara/yconverter/blob/master/lib/YConverter/Converter.php#L96-L98

Teste mal das hier bitte:

['rex_addon::get\((["']{1})community$1\)->isActivated\(\)' => 'rex_addon::get(\'ycom\')->isActivated()'],
['rex_addon::get\((["']{1})community$1\)->isAvailable\(\)' => 'rex_addon::get(\'ycom\')->isAvailable()'],
['rex_addon::get\((["']{1})community$1\)->isInstalled\(\)' => 'rex_addon::get(\'ycom\')->isInstalled()'],

Ggf. müsste man eine Rename für AddOns noch mitbringen.

@TobiasKrais
Copy link
Contributor Author

Ja, perfekt. Das is es. Danke für den Tipp!

@tbaddade
Copy link
Member

tbaddade commented Nov 6, 2017

Ja, perfekt. Das is es.

D.h. du kannst bestätigen, dass die obigen Zeilen korrekt ersetzt werden?

@TobiasKrais
Copy link
Contributor Author

Ja, das wollte ich damit ausdrücken :-).

@tbaddade tbaddade merged commit c574eb3 into yakamara:master Nov 6, 2017
['checkperm\(' => 'checkPerm('],
['rex_addon::get\((["']{1})community$1\)->isActivated\(\)' => 'rex_addon::get(\'ycom\')->isActivated()'],
['rex_addon::get\((["']{1})community$1\)->isAvailable\(\)' => 'rex_addon::get(\'ycom\')->isAvailable()'],
['rex_addon::get\((["']{1})community$1\)->isInstalled\(\)' => 'rex_addon::get(\'ycom\')->isInstalled()'],
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

' wird nicht richtig escaped.. #26

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants