WPCF7_TagGeneratorGenerator::ref()
Returns a unique reference ID.
Метод класса: WPCF7_TagGeneratorGenerator{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WPCF7_TagGeneratorGenerator = new WPCF7_TagGeneratorGenerator(); $WPCF7_TagGeneratorGenerator->ref( $suffix );
- $suffix **
- -
По умолчанию: ''
Код WPCF7_TagGeneratorGenerator::ref() WPCF7 TagGeneratorGenerator::ref CF7 6.0.1
public function ref( $suffix = '' ) { $ref = sprintf( '%s-%s', $this->key, $suffix ); $ref = strtolower( $ref ); $ref = preg_replace( '/[^0-9a-z-]/', '', $ref ); $ref = preg_replace( '/[-]+/', '-', $ref ); $ref = trim( $ref, '-' ); return $ref; }