Created
August 5, 2020 09:27
-
-
Save sorokadima/3d035dcd36b751bfdb1e1a7e1ba2e7a8 to your computer and use it in GitHub Desktop.
Yii2 model custom attribute getter. (custom property)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// view | |
<?= $form->field($model, 'foo')->checkbox() ?> | |
// or | |
<?php print_r( $model->foo ) ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// model | |
public function getFoo() { | |
return true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment